diff --git a/CHANGELOG.md b/CHANGELOG.md index 04cba4ed7..10aff394a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 2.60.0 + +* Fix bad interaction between --retain-points-multiplier and stopping early when the tile feature limit is reached +* Fix another bad interaction between --retain-points-multiplier, dropping-as-needed, and variable depth tile pyramids +* Add optional BUILD_INFO string to version +* Reorder overzoom logic to clip before dealing with multiplier and filters +* When --generate-variable-depth-tile-pyramid is in use, report the actual highest zoom generated as tileset maxzoom + # 2.59.0 * Correct `antimeridian_adjusted_bounds` latitude calculation when vertices extend beyond the edge of the Mercator plane diff --git a/Makefile b/Makefile index 9084ec4d1..ec14c4dbb 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,15 @@ PREFIX ?= /usr/local MANDIR ?= $(PREFIX)/share/man/man1/ BUILDTYPE ?= Release +BUILD_INFO ?= SHELL = /bin/sh # inherit from env if set CC := $(CC) CXX := $(CXX) -CFLAGS := $(CFLAGS) -fPIE -CXXFLAGS := $(CXXFLAGS) -std=c++17 -fPIE +CFLAGS := $(CFLAGS) -fPIE -DBUILD_INFO=$(BUILD_INFO) +CXXFLAGS := $(CXXFLAGS) -std=c++17 -fPIE -DBUILD_INFO=$(BUILD_INFO) LDFLAGS := $(LDFLAGS) WARNING_FLAGS := -Wall -Wshadow -Wsign-compare -Wextra -Wunreachable-code -Wuninitialized -Wshadow RELEASE_FLAGS := -O3 -DNDEBUG diff --git a/clip.cpp b/clip.cpp index 930ceca8e..3538da701 100644 --- a/clip.cpp +++ b/clip.cpp @@ -1188,37 +1188,6 @@ std::string overzoom(std::vector const &tiles, int nz, int nx, int static const std::string retain_points_multiplier_sequence = "tippecanoe:retain_points_multiplier_sequence"; for (auto feature : layer.features) { - bool flush_multiplier_cluster = false; - if (demultiply) { - for (ssize_t i = feature.tags.size() - 2; i >= 0; i -= 2) { - if (layer.keys[feature.tags[i]] == retain_points_multiplier_first) { - mvt_value v = layer.values[feature.tags[i + 1]]; - if (v.type == mvt_bool && v.numeric_value.bool_value) { - flush_multiplier_cluster = true; - feature.tags.erase(feature.tags.begin() + i, feature.tags.begin() + i + 2); - } - } else if (i < (ssize_t) feature.tags.size() && layer.keys[feature.tags[i]] == retain_points_multiplier_sequence) { - mvt_value v = layer.values[feature.tags[i + 1]]; - feature.seq = mvt_value_to_long_long(v); - feature.tags.erase(feature.tags.begin() + i, feature.tags.begin() + i + 2); - } - } - } else { - flush_multiplier_cluster = true; - } - - if (flush_multiplier_cluster) { - if (pending_tile_features.size() > 0) { - feature_out(pending_tile_features, *outlayer, keep, attribute_accum, tile_stringpool); - pending_tile_features.clear(); - } - } - - std::set exclude_attributes; - if (filter != NULL && !evaluate(feature, layer, filter, exclude_attributes, nz, unidecode_data)) { - continue; - } - drawvec geom; int t = feature.type; @@ -1268,6 +1237,7 @@ std::string overzoom(std::vector const &tiles, int nz, int nx, int long long b = outtilesize * buffer / 256; if (xmax < -b || ymax < -b || xmin > outtilesize + b || ymin > outtilesize + b) { + // quick exclusion by bounding box continue; } @@ -1281,6 +1251,42 @@ std::string overzoom(std::vector const &tiles, int nz, int nx, int } } + if (geom.size() == 0) { + // clipped away + continue; + } + + bool flush_multiplier_cluster = false; + if (demultiply) { + for (ssize_t i = feature.tags.size() - 2; i >= 0; i -= 2) { + if (layer.keys[feature.tags[i]] == retain_points_multiplier_first) { + mvt_value v = layer.values[feature.tags[i + 1]]; + if (v.type == mvt_bool && v.numeric_value.bool_value) { + flush_multiplier_cluster = true; + feature.tags.erase(feature.tags.begin() + i, feature.tags.begin() + i + 2); + } + } else if (i < (ssize_t) feature.tags.size() && layer.keys[feature.tags[i]] == retain_points_multiplier_sequence) { + mvt_value v = layer.values[feature.tags[i + 1]]; + feature.seq = mvt_value_to_long_long(v); + feature.tags.erase(feature.tags.begin() + i, feature.tags.begin() + i + 2); + } + } + } else { + flush_multiplier_cluster = true; + } + + if (flush_multiplier_cluster) { + if (pending_tile_features.size() > 0) { + feature_out(pending_tile_features, *outlayer, keep, attribute_accum, tile_stringpool); + pending_tile_features.clear(); + } + } + + std::set exclude_attributes; + if (filter != NULL && !evaluate(feature, layer, filter, exclude_attributes, nz, unidecode_data)) { + continue; + } + bool still_need_simplification_after_reduction = false; if (t == VT_POLYGON && tiny_polygon_size > 0) { bool simplified_away_by_reduction = false; diff --git a/main.cpp b/main.cpp index dad6a05db..54595bc65 100644 --- a/main.cpp +++ b/main.cpp @@ -49,7 +49,6 @@ #include "tile.hpp" #include "pool.hpp" #include "projection.hpp" -#include "version.hpp" #include "memfile.hpp" #include "main.hpp" #include "geojson.hpp" @@ -3608,7 +3607,7 @@ int main(int argc, char **argv) { } case 'v': - fprintf(stderr, "tippecanoe %s\n", VERSION); + fprintf(stderr, "tippecanoe %s\n", version_str().c_str()); exit(EXIT_SUCCESS); case 'P': diff --git a/mbtiles.cpp b/mbtiles.cpp index 8dcc0e33a..a489e7daa 100644 --- a/mbtiles.cpp +++ b/mbtiles.cpp @@ -654,6 +654,17 @@ static double sixdig(double val) { return std::round(val * 1e6) / 1e6; } +#define str(x) #x +#define xstr(x) str(x) +std::string version_str() { + std::string s = VERSION; + std::string build_info = xstr(BUILD_INFO); + if (build_info.size() > 0) { + s += " " + build_info; + } + return s; +} + metadata make_metadata(const char *fname, int minzoom, int maxzoom, double minlat, double minlon, double maxlat, double maxlon, double minlat2, double minlon2, double maxlat2, double maxlon2, double midlat, double midlon, const char *attribution, std::map const &layermap, bool vector, const char *description, bool do_tilestats, std::map const &attribute_descriptions, std::string const &program, std::string const &commandline, std::vector const &strategies, int basezoom, double droprate, int retain_points_multiplier) { metadata m; @@ -684,7 +695,7 @@ metadata make_metadata(const char *fname, int minzoom, int maxzoom, double minla m.attribution = attribution; } - m.generator = program + " " + VERSION; + m.generator = program + " " + version_str(); m.generator_options = commandline; m.strategies_json = stringify_strategies(strategies); diff --git a/mbtiles.hpp b/mbtiles.hpp index 8863df60e..661f5a654 100644 --- a/mbtiles.hpp +++ b/mbtiles.hpp @@ -77,5 +77,6 @@ std::map merge_layermaps(std::vector merge_layermaps(std::vector > const &maps, bool trunc); void add_to_tilestats(std::map &tilestats, std::string const &layername, serial_val const &val); +std::string version_str(); #endif diff --git a/tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json b/tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json index 9c87f234d..7893bb77b 100644 --- a/tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json +++ b/tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "0", "minzoom": "0", "name": "tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json.check.mbtiles", -"strategies": "[{\"coalesced_as_needed\":999,\"feature_count_desired\":201}]", +"strategies": "[{\"coalesced_as_needed\":999,\"feature_count_desired\":1000}]", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/loop/out/-z0_-O200_--drop-densest-as-needed.json b/tests/loop/out/-z0_-O200_--drop-densest-as-needed.json index 03e03d39c..c13b9e71a 100644 --- a/tests/loop/out/-z0_-O200_--drop-densest-as-needed.json +++ b/tests/loop/out/-z0_-O200_--drop-densest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "0", "minzoom": "0", "name": "tests/loop/out/-z0_-O200_--drop-densest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":999,\"feature_count_desired\":201}]", +"strategies": "[{\"dropped_as_needed\":999,\"feature_count_desired\":1000}]", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json b/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json index 28e848a05..d9447d25e 100644 --- a/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json +++ b/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "0", "minzoom": "0", "name": "tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":999,\"feature_count_desired\":201}]", +"strategies": "[{\"dropped_as_needed\":999,\"feature_count_desired\":1000}]", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json b/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json index af1559814..acc884954 100644 --- a/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json +++ b/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json @@ -1,15 +1,15 @@ { "type": "FeatureCollection", "properties": { "antimeridian_adjusted_bounds": "-122.538670,37.705764,-12.240000,37.836443", "bounds": "-122.538670,37.705764,-12.240000,37.836443", -"center": "-122.409668,37.705764,13", +"center": "-122.453613,37.770713,13", "description": "tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json.check.mbtiles -Z11 -z13 -O100 --cluster-densest-as-needed tests/muni/muni.json", -"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":11,\"maxzoom\":13,\"fields\":{\"clustered\":\"Boolean\",\"name\":\"String\",\"point_count\":\"Number\",\"point_count_abbreviated\":\"String\",\"sqrt_point_count\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":11,\"maxzoom\":13,\"fields\":{\"clustered\":\"Boolean\",\"name\":\"String\",\"point_count\":\"Number\",\"point_count_abbreviated\":\"String\",\"sqrt_point_count\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":5,\"attributes\":[{\"attribute\":\"clustered\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"name\",\"count\":1000,\"type\":\"string\",\"values\":[\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]},{\"attribute\":\"point_count\",\"count\":104,\"type\":\"number\",\"values\":[10,109,11,113,114,115,12,121,124,125,126,127,13,133,134,14,142,15,158,16,160,17,177,178,18,185,19,190,196,2,20,201,203,207,21,213,214,217,218,22,225,227,23,231,234,238,24,240,241,244,248,25,253,257,259,26,264,266,27,274,277,279,28,29,293,294,3,30,305,31,32,326,33,334,34,35,353,354,36,361,376,38,39,4,40,41,42,45,48,5,50,51,52,54,6,61,64,66,68,7],\"min\":2,\"max\":376},{\"attribute\":\"point_count_abbreviated\",\"count\":104,\"type\":\"string\",\"values\":[\"10\",\"109\",\"11\",\"113\",\"114\",\"115\",\"12\",\"121\",\"124\",\"125\",\"126\",\"127\",\"13\",\"133\",\"134\",\"14\",\"142\",\"15\",\"158\",\"16\",\"160\",\"17\",\"177\",\"178\",\"18\",\"185\",\"19\",\"190\",\"196\",\"2\",\"20\",\"201\",\"203\",\"207\",\"21\",\"213\",\"214\",\"217\",\"218\",\"22\",\"225\",\"227\",\"23\",\"231\",\"234\",\"238\",\"24\",\"240\",\"241\",\"244\",\"248\",\"25\",\"253\",\"257\",\"259\",\"26\",\"264\",\"266\",\"27\",\"274\",\"277\",\"279\",\"28\",\"29\",\"293\",\"294\",\"3\",\"30\",\"305\",\"31\",\"32\",\"326\",\"33\",\"334\",\"34\",\"35\",\"353\",\"354\",\"36\",\"361\",\"376\",\"38\",\"39\",\"4\",\"40\",\"41\",\"42\",\"45\",\"48\",\"5\",\"50\",\"51\",\"52\",\"54\",\"6\",\"61\",\"64\",\"66\",\"68\",\"7\"]},{\"attribute\":\"sqrt_point_count\",\"count\":104,\"type\":\"number\",\"values\":[1.410000,1.730000,10.440000,10.630000,10.680000,10.720000,11.000000,11.140000,11.180000,11.220000,11.270000,11.530000,11.580000,11.920000,12.570000,12.650000,13.300000,13.340000,13.600000,13.780000,14.000000,14.180000,14.250000,14.390000,14.590000,14.630000,14.730000,14.760000,15.000000,15.070000,15.200000,15.300000,15.430000,15.490000,15.520000,15.620000,15.750000,15.910000,16.030000,16.090000,16.250000,16.310000,16.550000,16.640000,16.700000,17.120000,17.150000,17.460000,18.060000,18.280000,18.790000,18.810000,19.000000,19.390000,2.000000,2.240000,2.450000,2.650000,2.830000,3.000000,3.160000,3.320000,3.460000,3.610000,3.740000,3.870000,4.000000,4.120000,4.240000,4.360000,4.470000,4.580000,4.690000,4.800000,4.900000,5.000000,5.100000,5.200000,5.290000,5.390000,5.480000,5.570000,5.660000,5.740000,5.830000,5.920000,6.000000,6.160000,6.240000,6.320000,6.400000,6.480000,6.710000,6.930000,7.070000,7.140000,7.210000,7.350000,7.810000,8.000000],\"min\":1.41,\"max\":19.39}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":5,\"attributes\":[{\"attribute\":\"clustered\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"name\",\"count\":18,\"type\":\"string\",\"values\":[\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]},{\"attribute\":\"point_count\",\"count\":8,\"type\":\"number\",\"values\":[11,12,2,3,4,5,7,8],\"min\":2,\"max\":12},{\"attribute\":\"point_count_abbreviated\",\"count\":8,\"type\":\"string\",\"values\":[\"11\",\"12\",\"2\",\"3\",\"4\",\"5\",\"7\",\"8\"]},{\"attribute\":\"sqrt_point_count\",\"count\":8,\"type\":\"number\",\"values\":[1.410000,1.730000,2.000000,2.240000,2.650000,2.830000,3.320000,3.460000],\"min\":1.41,\"max\":3.46}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":11,\"maxzoom\":13,\"fields\":{\"clustered\":\"Boolean\",\"name\":\"String\",\"point_count\":\"Number\",\"point_count_abbreviated\":\"String\",\"sqrt_point_count\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":11,\"maxzoom\":13,\"fields\":{\"clustered\":\"Boolean\",\"name\":\"String\",\"point_count\":\"Number\",\"point_count_abbreviated\":\"String\",\"sqrt_point_count\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":5,\"attributes\":[{\"attribute\":\"clustered\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"name\",\"count\":1000,\"type\":\"string\",\"values\":[\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]},{\"attribute\":\"point_count\",\"count\":43,\"type\":\"number\",\"values\":[10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,38,39,4,40,42,45,5,51,54,6,61,7,8,9],\"min\":2,\"max\":61},{\"attribute\":\"point_count_abbreviated\",\"count\":43,\"type\":\"string\",\"values\":[\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\",\"2\",\"20\",\"21\",\"22\",\"23\",\"24\",\"25\",\"26\",\"27\",\"28\",\"29\",\"3\",\"30\",\"31\",\"32\",\"33\",\"34\",\"35\",\"36\",\"38\",\"39\",\"4\",\"40\",\"42\",\"45\",\"5\",\"51\",\"54\",\"6\",\"61\",\"7\",\"8\",\"9\"]},{\"attribute\":\"sqrt_point_count\",\"count\":43,\"type\":\"number\",\"values\":[1.410000,1.730000,2.000000,2.240000,2.450000,2.650000,2.830000,3.000000,3.160000,3.320000,3.460000,3.610000,3.740000,3.870000,4.000000,4.120000,4.240000,4.360000,4.470000,4.580000,4.690000,4.800000,4.900000,5.000000,5.100000,5.200000,5.290000,5.390000,5.480000,5.570000,5.660000,5.740000,5.830000,5.920000,6.000000,6.160000,6.240000,6.320000,6.480000,6.710000,7.140000,7.350000,7.810000],\"min\":1.41,\"max\":7.81}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":5,\"attributes\":[{\"attribute\":\"clustered\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"name\",\"count\":18,\"type\":\"string\",\"values\":[\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]},{\"attribute\":\"point_count\",\"count\":5,\"type\":\"number\",\"values\":[12,2,3,5,7],\"min\":2,\"max\":12},{\"attribute\":\"point_count_abbreviated\",\"count\":5,\"type\":\"string\",\"values\":[\"12\",\"2\",\"3\",\"5\",\"7\"]},{\"attribute\":\"sqrt_point_count\",\"count\":5,\"type\":\"number\",\"values\":[1.410000,1.730000,2.240000,2.650000,3.460000],\"min\":1.41,\"max\":3.46}]}]}}", "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"coalesced_as_needed\":675,\"feature_count_desired\":101},{\"dropped_by_rate\":2974,\"coalesced_as_needed\":1762,\"feature_count_desired\":101},{\"coalesced_as_needed\":4456,\"feature_count_desired\":101}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"coalesced_as_needed\":681,\"feature_count_desired\":703},{\"dropped_by_rate\":2974,\"coalesced_as_needed\":1789,\"feature_count_desired\":755},{\"coalesced_as_needed\":4457,\"feature_count_desired\":856}]", "type": "overlay", "version": "2" }, "features": [ @@ -53,9 +53,7 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.800799 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.796322 ] } } -, -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.798967 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794796 ] } } , @@ -89,9 +87,7 @@ , { "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.763285 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.784452 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.781909 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.778754 ] } } , @@ -101,9 +97,7 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.778551 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.774141 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.775905 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.773055 ] } } , @@ -145,17 +139,11 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "clustered": true, "point_count": 28, "sqrt_point_count": 5.29, "point_count_abbreviated": "28" }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.796187 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.793948 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Main", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.790964 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.809343 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "clustered": true, "point_count": 24, "sqrt_point_count": 4.9, "point_count_abbreviated": "24" }, "geometry": { "type": "Point", "coordinates": [ -122.390656, 37.797814 ] } } , { "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.364092, 37.811174 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.803036 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } , @@ -251,9 +239,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.467775, 37.719643 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.462668, 37.718845 ] } } -, -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.716893 ] } } , { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } , @@ -281,9 +267,7 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.788726 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.465608, 37.785012 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.785606 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773429 ] } } , @@ -317,9 +301,7 @@ , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749153 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.488611, 37.748068 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.492731, 37.748763 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.492044, 37.741314 ] } } , @@ -335,9 +317,7 @@ , { "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.726584 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "clustered": true, "point_count": 23, "sqrt_point_count": 4.8, "point_count_abbreviated": "23" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.754124 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "clustered": true, "point_count": 27, "sqrt_point_count": 5.2, "point_count_abbreviated": "27" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.758315 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.775566 ] } } , @@ -357,23 +337,17 @@ , { "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.467282, 37.758892 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.462776, 37.764201 ] } } -, -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.764015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.460008, 37.764099 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.461724, 37.756126 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.451832, 37.785741 ] } } -, -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.449515, 37.783859 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.784808 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.448227, 37.781145 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.778279 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.783333 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.782892 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Baker St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.777313 ] } } , @@ -381,11 +355,7 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.776651 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.440352, 37.771936 ] } } -, -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.766355 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.768900 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.766627 ] } } , @@ -401,9 +371,7 @@ , { "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.466295, 37.741111 ] } } -, -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.457154, 37.748135 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.462261, 37.744199 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.739652 ] } } , @@ -431,27 +399,19 @@ , { "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.741993 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.750307 ] } } -, -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.747033 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.749221 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.448850, 37.733746 ] } } -, -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.731268 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.731642 ] } } , { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.452304, 37.723852 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.447240, 37.720933 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.439859, 37.733339 ] } } -, -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.438099, 37.729045 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.435353, 37.724056 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.438271, 37.729504 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.723903 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776685 ] } } , @@ -479,9 +439,7 @@ , { "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.481658, 37.825497 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788454 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.478032, 37.799578 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.478933, 37.797357 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.468312, 37.802138 ] } } , @@ -493,9 +451,7 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.792948 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.441683, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.438400, 37.791117 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.443163, 37.787539 ] } } , @@ -537,9 +493,7 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 34, "sqrt_point_count": 5.83, "point_count_abbreviated": "34" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.775243 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.783350 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.423594, 37.784368 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.782570 ] } } , @@ -559,9 +513,7 @@ , { "type": "Feature", "properties": { "name": "18th St & Sanchez St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.428315, 37.758993 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.761029 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 15th St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.765931 ] } } , @@ -585,9 +537,7 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.781332 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.389090, 37.781654 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.390292, 37.781502 ] } } , { "type": "Feature", "properties": { "name": " 4th St & Brannan St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.395377, 37.776770 ] } } , @@ -595,9 +545,7 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.404025, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "clustered": true, "point_count": 27, "sqrt_point_count": 5.2, "point_count_abbreviated": "27" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.758128 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "clustered": true, "point_count": 28, "sqrt_point_count": 5.29, "point_count_abbreviated": "28" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.758247 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.389905, 37.768391 ] } } , @@ -619,9 +567,7 @@ , { "type": "Feature", "properties": { "name": "Chenery St & 30th St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.740228 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.751563 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.748610 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.749323 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.739923 ] } } , @@ -641,9 +587,7 @@ , { "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.749578 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.406964, 37.740704 ] } } -, -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.398317, 37.747609 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.401965, 37.744708 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.394283, 37.748593 ] } } , @@ -651,9 +595,7 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.738022 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727399 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "clustered": true, "point_count": 39, "sqrt_point_count": 6.24, "point_count_abbreviated": "39" }, "geometry": { "type": "Point", "coordinates": [ -122.399132, 37.732847 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.724497 ] } } , @@ -669,9 +611,7 @@ , { "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "clustered": true, "point_count": 26, "sqrt_point_count": 5.1, "point_count_abbreviated": "26" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.731438 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.726958 ] } } -, -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.721764 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.717911 ] } } ] } @@ -687,9 +627,7 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.430053, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.802138 ] } } -, -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.423208, 37.800442 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.801443 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.793270 ] } } , @@ -703,9 +641,7 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.793660 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.802596 ] } } -, -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.406428, 37.797391 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.407243, 37.801782 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.801222 ] } } , @@ -719,9 +655,7 @@ , { "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.370529, 37.812666 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.389562, 37.801545 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.418144, 37.787657 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.405140, 37.793965 ] } } , { "type": "Feature", "properties": { "name": "Post St & Taylor St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.402737, 37.787403 ] } } ] } @@ -1563,9 +1497,7 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739999 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.741849 ] } } -, -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.399808, 37.742909 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.742383 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.738676 ] } } , diff --git a/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json b/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json index c5b38aa02..55c849c2e 100644 --- a/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json +++ b/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "10", "minzoom": "0", "name": "tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4591},{\"dropped_by_rate\":4591},{\"dropped_by_rate\":4561},{\"dropped_by_rate\":4511},{\"dropped_by_rate\":4401},{\"dropped_by_rate\":4121},{\"dropped_by_rate\":3411},{\"dropped_by_rate\":1650},{\"dropped_by_rate\":1165,\"dropped_as_needed\":124,\"tile_size_desired\":68538},{\"dropped_by_rate\":1345,\"dropped_as_needed\":888,\"tile_size_desired\":72665},{\"dropped_as_needed\":1976,\"tile_size_desired\":67958}]", +"strategies": "[{\"dropped_by_rate\":4591},{\"dropped_by_rate\":4591},{\"dropped_by_rate\":4561},{\"dropped_by_rate\":4511},{\"dropped_by_rate\":4401},{\"dropped_by_rate\":4121},{\"dropped_by_rate\":3411},{\"dropped_by_rate\":1650},{\"dropped_by_rate\":1066,\"dropped_as_needed\":311,\"tile_size_desired\":68538},{\"dropped_by_rate\":1058,\"dropped_as_needed\":1579,\"tile_size_desired\":72665},{\"dropped_as_needed\":4452,\"tile_size_desired\":67958}]", "tippecanoe_decisions": "{\"basezoom\":10,\"droprate\":2.5,\"retain_points_multiplier\":10}", "type": "overlay", "version": "2" @@ -10190,5399 +10190,5505 @@ , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 99 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.536354, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.536354, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829040 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 3520 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 3602 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831209 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831209 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 3519 }, "geometry": { "type": "Point", "coordinates": [ -122.529488, 37.821718 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 3601 }, "geometry": { "type": "Point", "coordinates": [ -122.529488, 37.821718 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.515068, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.515068, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833921 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833921 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3571 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3573 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 3572 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829582 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829582 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 3573 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 3658 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3572 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3657 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 3574 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 3659 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3571 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3656 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3557 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3533 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave", "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave", "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_sequence": 3605 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_sequence": 3566 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_sequence": 3523 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3703 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3618 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3524 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3617 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3607 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3534 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3525 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3616 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3533 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 3564 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3563 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3701 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3616 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 3648 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 3564 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 3702 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 3617 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3615 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3614 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3532 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3531 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3608 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , { "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 3553 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 3636 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } , { "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3562 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 3560 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 3700 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 3615 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 3538 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3685 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3600 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3680 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3595 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3681 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3679 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3596 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 3661 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3594 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 3576 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 3662 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 3577 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 3516 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 3501 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 3570 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 3604 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 3522 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 3513 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3551 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 3552 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave", "tippecanoe:retain_points_multiplier_sequence": 3599 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave", "tippecanoe:retain_points_multiplier_sequence": 3517 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 3503 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 3530 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3611 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3528 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 3613 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 3530 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3609 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3621 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3526 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3620 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3538 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3537 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3529 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3535 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 3534 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3545 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 3541 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_sequence": 3550 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_sequence": 3633 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_sequence": 3540 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } , { "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3544 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3539 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3590 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3675 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 3550 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 3516 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 3598 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 3509 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3592 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3677 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 3569 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3543 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3626 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.807071 ] } } , { "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } , { "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , @@ -15590,255 +15696,259 @@ , { "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.808428 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.808428 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3521 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807885 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807885 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808428 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808428 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3588 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3673 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3575 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3660 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3500 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3587 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3672 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3601 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3686 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , @@ -15848,2853 +15958,2961 @@ , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3598 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3683 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3536 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797306 ] } } , { "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 3540 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 3623 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3567 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3652 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY", "tippecanoe:retain_points_multiplier_sequence": 3513 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY", "tippecanoe:retain_points_multiplier_sequence": 3595 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3523 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3522 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 3532 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792422 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794864 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793779 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794322 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3676 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3591 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 3589 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 3507 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3697 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3612 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3698 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3613 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_sequence": 3637 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_sequence": 3554 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St.", "tippecanoe:retain_points_multiplier_sequence": 3547 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St. & Beale St.", "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3559 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3650 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 3510 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3546 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3548 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3556 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 3604 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 3592 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 3582 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 3583 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3555 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 3695 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 3689 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.376366, 37.825514 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 3667 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 3668 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.823887 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.371559, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 3527 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 3528 }, "geometry": { "type": "Point", "coordinates": [ -122.376366, 37.825514 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821989 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3529 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.823887 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3542 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823616 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813310 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.371559, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3526 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821989 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 3525 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.364006, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813310 ] } } , -{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.364006, 37.820633 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3602 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3539 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_sequence": 3541 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3687 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3622 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 3527 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_sequence": 3624 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3568 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3552 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3635 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3575 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3567 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3531 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3508 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 3603 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3590 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 3688 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 3553 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 3554 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3591 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3509 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 3593 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 3511 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3691 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3606 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3699 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3614 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3579 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 3577 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3506 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3588 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3580 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3581 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 3505 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 3587 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3500 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3582 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3504 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3586 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3501 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3583 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3503 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3585 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3536 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3619 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 3535 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 3618 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 3608 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 3693 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_sequence": 3607 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_sequence": 3692 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_sequence": 3565 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_sequence": 3649 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 3515 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 3597 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3576 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3558 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3521 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 3502 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3609 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3694 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3611 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3696 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 3520 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3566 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3651 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3643 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3559 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3596 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3514 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 3647 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 3639 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3640 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 3563 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 3556 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3597 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3682 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3562 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3557 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3646 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3641 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3560 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 3561 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 3558 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 3645 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 3642 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3517 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3518 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3519 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "101 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "101 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3548 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3549 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3631 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3632 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3502 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3584 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3512 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 3544 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3578 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 3543 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 3627 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3547 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3630 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_sequence": 3537 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724836 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 3600 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 3518 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3594 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3512 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 3561 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_sequence": 3504 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 3629 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 3546 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3507 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3508 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 3555 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 3638 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 3569 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 3654 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 3568 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 3653 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3551 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3634 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3570 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3655 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3510 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3515 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3511 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } , @@ -18702,819 +18920,833 @@ , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 3565 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 3524 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 3606 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 3578 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 3663 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3589 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3674 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3584 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3669 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3579 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3664 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3585 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3670 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 3581 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 3666 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3586 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3671 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 3593 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 3678 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 3580 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 3665 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 3599 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 3684 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 3605 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 3690 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3549 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 3574 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 3542 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 3625 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 3506 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 3545 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 3628 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -19672,6325 +19904,7283 @@ , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 198 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } , { "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705689 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705689 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715739 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715467 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715467 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.706504 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706233 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.706504 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706233 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.712072 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832294 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832294 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832429 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832429 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833785 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833785 ] } } +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833514 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833514 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833514 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833514 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829446 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799340 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.795542 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.498760, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.501850, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738006 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.738006 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.498760, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.501850, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.485714, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.485714, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.463055, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787132 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.774107 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.463055, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754566 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787132 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770036 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.774107 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750494 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.473354, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770036 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743435 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.768951 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754566 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750494 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.473354, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.737463 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743435 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.749408 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.806393 ] } } +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802053 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.802053 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.749408 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738549 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.376194, 37.825379 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.824023 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.823480 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829175 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825108 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816158 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.806393 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821853 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.366238, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.818328 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.808021 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807750 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.807750 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820768 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.811276 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802053 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.802053 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787132 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774107 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804495 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.799340 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799612 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.799612 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792829 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792829 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794728 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.376194, 37.825379 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.824023 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.823480 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829175 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825108 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816158 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821853 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.366238, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811818 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820768 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.811276 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787132 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774107 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749408 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750222 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.747236 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730131 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768951 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749408 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750222 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731761 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.747236 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738006 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727688 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740449 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738549 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736919 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.735833 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740449 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.382030, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.379627, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738549 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736919 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.375507, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.382030, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715467 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715739 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715467 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.712072 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ diff --git a/tests/ne_110m_populated_places/out/-z20_-r1_--generate-variable-depth-tile-pyramid_--limit-tile-feature-count_50.json b/tests/ne_110m_populated_places/out/-z20_-r1_--generate-variable-depth-tile-pyramid_--limit-tile-feature-count_50.json index 00627d73c..f9aa01a1b 100644 --- a/tests/ne_110m_populated_places/out/-z20_-r1_--generate-variable-depth-tile-pyramid_--limit-tile-feature-count_50.json +++ b/tests/ne_110m_populated_places/out/-z20_-r1_--generate-variable-depth-tile-pyramid_--limit-tile-feature-count_50.json @@ -1,12 +1,12 @@ { "type": "FeatureCollection", "properties": { "antimeridian_adjusted_bounds": "-175.220564,-41.299973,179.216647,64.150023", "bounds": "-175.220564,-41.299973,179.216647,64.150023", -"center": "-175.220564,64.150023,20", +"center": "-157.500000,64.150023,3", "description": "tests/ne_110m_populated_places/out/-z20_-r1_--generate-variable-depth-tile-pyramid_--limit-tile-feature-count_50.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-z20_-r1_--generate-variable-depth-tile-pyramid_--limit-tile-feature-count_50.json.check.mbtiles -z20 -r1 --generate-variable-depth-tile-pyramid --limit-tile-feature-count 50 tests/ne_110m_populated_places/in.json", -"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":20,\"fields\":{\"ADM0CAP\":\"Number\",\"ADM0NAME\":\"String\",\"ADM0_A3\":\"String\",\"ADM1NAME\":\"String\",\"ADMIN1_COD\":\"Number\",\"CAPALT\":\"Number\",\"CAPIN\":\"String\",\"CHANGED\":\"Number\",\"CHECKME\":\"Number\",\"CITYALT\":\"String\",\"COMPARE\":\"Number\",\"DIFFASCII\":\"Number\",\"DIFFNOTE\":\"String\",\"ELEVATION\":\"Number\",\"FEATURECLA\":\"String\",\"FEATURE_CL\":\"String\",\"FEATURE_CO\":\"String\",\"GEONAMEID\":\"Number\",\"GEONAMESNO\":\"String\",\"GN_ASCII\":\"String\",\"GN_POP\":\"Number\",\"GTOPO30\":\"Number\",\"ISO_A2\":\"String\",\"LABELRANK\":\"Number\",\"LATITUDE\":\"Number\",\"LONGITUDE\":\"Number\",\"LS_MATCH\":\"Number\",\"LS_NAME\":\"String\",\"MAX_AREAKM\":\"Number\",\"MAX_AREAMI\":\"Number\",\"MAX_BBXMAX\":\"Number\",\"MAX_BBXMIN\":\"Number\",\"MAX_BBYMAX\":\"Number\",\"MAX_BBYMIN\":\"Number\",\"MAX_NATSCA\":\"Number\",\"MAX_PERKM\":\"Number\",\"MAX_PERMI\":\"Number\",\"MAX_POP10\":\"Number\",\"MAX_POP20\":\"Number\",\"MAX_POP300\":\"Number\",\"MAX_POP310\":\"Number\",\"MAX_POP50\":\"Number\",\"MEAN_BBXC\":\"Number\",\"MEAN_BBYC\":\"Number\",\"MEGACITY\":\"Number\",\"MEGANAME\":\"String\",\"MIN_AREAKM\":\"Number\",\"MIN_AREAMI\":\"Number\",\"MIN_BBXMAX\":\"Number\",\"MIN_BBXMIN\":\"Number\",\"MIN_BBYMAX\":\"Number\",\"MIN_BBYMIN\":\"Number\",\"MIN_PERKM\":\"Number\",\"MIN_PERMI\":\"Number\",\"NAME\":\"String\",\"NAMEALT\":\"String\",\"NAMEASCII\":\"String\",\"NAMEDIFF\":\"Number\",\"NAMEPAR\":\"String\",\"NATSCALE\":\"Number\",\"POP1950\":\"Number\",\"POP1955\":\"Number\",\"POP1960\":\"Number\",\"POP1965\":\"Number\",\"POP1970\":\"Number\",\"POP1975\":\"Number\",\"POP1980\":\"Number\",\"POP1985\":\"Number\",\"POP1990\":\"Number\",\"POP1995\":\"Number\",\"POP2000\":\"Number\",\"POP2005\":\"Number\",\"POP2010\":\"Number\",\"POP2015\":\"Number\",\"POP2020\":\"Number\",\"POP2025\":\"Number\",\"POP2050\":\"Number\",\"POP_MAX\":\"Number\",\"POP_MIN\":\"Number\",\"POP_OTHER\":\"Number\",\"RANK_MAX\":\"Number\",\"RANK_MIN\":\"Number\",\"SCALERANK\":\"Number\",\"SOV0NAME\":\"String\",\"SOV_A3\":\"String\",\"TIMEZONE\":\"String\",\"UN_ADM0\":\"String\",\"UN_FID\":\"Number\",\"UN_LAT\":\"Number\",\"UN_LONG\":\"Number\",\"WORLDCITY\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":91,\"attributes\":[{\"attribute\":\"ADM0CAP\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"ADM0NAME\",\"count\":198,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hong Kong S.A.R.\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kiribati\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Liechtenstein\",\"Lithuania\"]},{\"attribute\":\"ADM0_A3\",\"count\":198,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HKG\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\"]},{\"attribute\":\"ADM1NAME\",\"count\":204,\"type\":\"string\",\"values\":[\"Abu Dhabi\",\"Ad Dawhah\",\"Addis Ababa\",\"Ahal\",\"Al Kuwayt\",\"Al Qahirah\",\"Alger\",\"Amanat Al Asimah\",\"Amman\",\"Ankara\",\"Anseba\",\"Antananarivo\",\"Aqmola\",\"Ar Riyad\",\"Asunción\",\"Attiki\",\"Auckland\",\"Australian Capital Territory\",\"Baghdad\",\"Baki\",\"Bamako\",\"Banaadir\",\"Bangkok Metropolis\",\"Bangui\",\"Banjul\",\"Beijing\",\"Beirut\",\"Benguet\",\"Berlin\",\"Bern\",\"Bhaktapur\",\"Bioko Norte\",\"Bishkek\",\"Bissau\",\"Bogota\",\"Bratislavský\",\"British Columbia\",\"Brunei and Muara\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Bujumbura Mairie\",\"California\",\"Cayo\",\"Centar\",\"Central\",\"Central Equatoria\",\"Centre\",\"Chisinau\",\"Chuquisaca\",\"Ciudad de Buenos Aires\",\"Ciudad de la Habana\",\"Colombo\",\"Colorado\",\"Comunidad de Madrid\",\"Conakry\",\"Dakar\",\"Damascus\",\"Dar-Es-Salaam\",\"Delhi\",\"Dhaka\",\"Dili\",\"District of Columbia\",\"Distrito Capital\",\"Distrito Federal\",\"Distrito Nacional\",\"Djibouti\",\"Dodoma\",\"Dubay\",\"Dublin\",\"Durrës\",\"East Berbice-Corentyne\",\"Erevan\",\"Estuaire\",\"F.C.T.\",\"Federal Capital Territory\",\"Florida\",\"Francisco Morazán\",\"Gauteng\",\"Genève\",\"Georgia\",\"Grad Beograd\",\"Grad Sofiya\",\"Grad Zagreb\",\"Grand Casablanca\",\"Greater Accra\",\"Guadalcanal\",\"Guatemala\",\"Hadjer-Lamis\",\"Harare\",\"Harju\",\"Hhohho\",\"Hovedstaden\",\"Illinois\",\"Istanbul\",\"Jakarta Raya\",\"Jerusalem\",\"Kabul\",\"Kadiogo\",\"Kampala\"]},{\"attribute\":\"ADMIN1_COD\",\"count\":53,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,32,33,34,36,37,38,39,4,40,42,44,45,49,5,50,52,53,57,6,61,65,68,7,78,8,81,82,9],\"min\":0,\"max\":82},{\"attribute\":\"CAPALT\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"CAPIN\",\"count\":20,\"type\":\"string\",\"values\":[\"Administrative\",\"Capital of both\",\"Claimed as capi\",\"Claimed as inte\",\"De facto capita\",\"De facto, admin\",\"Former capital\",\"Judicial capita\",\"Legislative and\",\"Legislative cap\",\"Offical capital\",\"Official (const\",\"Official and ad\",\"Official and le\",\"Official capita\",\"Official, admin\",\"Official, de fa\",\"Official, legis\",\"UN Headquarters\",\"While Jerulsale\"]},{\"attribute\":\"CHANGED\",\"count\":7,\"type\":\"number\",\"values\":[0,1,20,3,4,40,5],\"min\":0,\"max\":40},{\"attribute\":\"CHECKME\",\"count\":2,\"type\":\"number\",\"values\":[0,5],\"min\":0,\"max\":5},{\"attribute\":\"CITYALT\",\"count\":53,\"type\":\"string\",\"values\":[\"Algiers\",\"Asuncion\",\"Athens\",\"Bangkok\",\"Beirut\",\"Belgrade\",\"Bogota\",\"Bombay\",\"Brasilia\",\"Brussels\",\"Bucharest\",\"Cairo\",\"Calcutta\",\"Casablanca\",\"Copenhagen\",\"Damascus\",\"Denver\",\"Dubai\",\"Guatemala\",\"Hanoi\",\"Havana\",\"Khartoum\",\"Kiev\",\"Kuwait\",\"Lisbon\",\"Lome\",\"Los Angeles\",\"Mexico City\",\"Mogadishu\",\"Moscow\",\"Ndjamena\",\"New York\",\"Osaka\",\"Ottawa\",\"Panama\",\"Phnom Penh\",\"Prague\",\"Rangoon\",\"Riyadh\",\"Rome\",\"San Francisco\",\"San Jose\",\"Sanaa\",\"Sao Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Tripoli\",\"Urumqi\",\"Valparaiso\",\"Vienna\",\"Warsaw\",\"Washington D.C.\",\"Yaounde\"]},{\"attribute\":\"COMPARE\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFASCII\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFNOTE\",\"count\":12,\"type\":\"string\",\"values\":[\"Added place.\",\"Changed country.\",\"Changed feature class.\",\"Changed feature class. Changed scale rank.\",\"Changed feature to Admin-0 region capital.\",\"Changed scale rank.\",\"Corrected coordinates.\",\"Location adjusted.\",\"Location adjusted. Changed scale rank.\",\"Name changed.\",\"Name changed. Changed scale rank.\",\"Population from GeoNames. Changed scale rank.\"]},{\"attribute\":\"ELEVATION\",\"count\":19,\"type\":\"number\",\"values\":[0,10,1317,16,171,179,187,2,2320,284,308,320,5,7,70,74,850,89,920],\"min\":0,\"max\":2320},{\"attribute\":\"FEATURECLA\",\"count\":6,\"type\":\"string\",\"values\":[\"Admin-0 capital\",\"Admin-0 capital alt\",\"Admin-0 region capital\",\"Admin-1 capital\",\"Admin-1 region capital\",\"Populated place\"]},{\"attribute\":\"FEATURE_CL\",\"count\":1,\"type\":\"string\",\"values\":[\"P\"]},{\"attribute\":\"FEATURE_CO\",\"count\":4,\"type\":\"string\",\"values\":[\"PPL\",\"PPLA\",\"PPLC\",\"PPLG\"]},{\"attribute\":\"GEONAMEID\",\"count\":242,\"type\":\"number\",\"values\":[-1,1018725,1040652,1070940,108410,112931,1138958,1176615,1185241,1221874,1238992,1252416,1261481,1275004,1275339,1277333,1283240,1298824,146268,1512569,1526273,1528675,1529102,1559804,1581130,160196,160263,1609350,162183,1642911,1645457,1651944,1668341,1690681,1701668,170654,1728930,1730025,1735161,1796236,1815286,1816670,1819729,1820906,1821306,1835848,184745,1850147,1853909,1857910,1871859,1880252,202061,2028462,2075807,2081986,2088122,2108502,2110079,2110394,2113779,2135171,2144168,2147714,2158177,2172517,2193733,2198148,2220957,223817,2240449,2253354,2260535,2267057,2274895,2279755,2293538,2306104,2309527,2314302,2322794,232422,2357048,2365267,2374775,2377450,2389853,2392087,2394819,2399697,2408770,241131,2413876,2422465,2427123,2440485,2460596,2462881,2464470,250441],\"min\":-1,\"max\":6942553},{\"attribute\":\"GEONAMESNO\",\"count\":8,\"type\":\"string\",\"values\":[\"GeoNames match general + researched.\",\"GeoNames match general.\",\"GeoNames match with ascii name + lat + long whole numbers.\",\"GeoNames rough area, rough name, requires further research.\",\"GeoNames rough area, rough name.\",\"GeoNames spatial join with similar names only.\",\"Geonames ascii name + lat.d + long.d matching.\",\"No GeoNames match due to small population, not in GeoNames, or poor NEV placement.\"]},{\"attribute\":\"GN_ASCII\",\"count\":239,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Bengaluru\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Den Haag\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Ejbei Uad el Aabd\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneve\",\"Georgetown\",\"Guatemala City\",\"Ha Noi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\"]},{\"attribute\":\"GN_POP\",\"count\":236,\"type\":\"number\",\"values\":[0,10021295,1019022,1020,1024027,10349312,10356500,10444527,1049498,1086505,1093485,1116513,11174257,11177,1122874,11285654,113364,1137347,113906,1152556,1153615,115826,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1273651,1275857,1284609,12920,1297281,1299369,13076300,13381,1353189,136473,13768,1391433,1399814,1431270,1442271,1453975,1459640,14608512,147074,150000,1508225,1536,1542813,155226,155963,1573544,15938,1619438,162135,1655753,16571,1662,1691468,1696128,1702139,1724,1742124,1767200,180541,1815679,1837969,183981,1877155,188084,1916100,194530,1963264,196731,1974647,1977663,1978028,200452,2026469,20500,208411,2087,2138,2163824,217,217000,2207718,223757,22400,224838,227940,22881,229398,234168,235017,24226],\"min\":0,\"max\":14608512},{\"attribute\":\"GTOPO30\",\"count\":166,\"type\":\"number\",\"values\":[-2,-9999,0,1,10,100,1002,1006,1025,103,104,108,1092,11,110,111,1129,1149,115,1156,12,1206,1247,125,1277,128,1282,1289,1299,13,1304,131,132,133,1398,14,1448,1468,1481,1482,15,151,152,1533,156,1561,1568,159,16,164,169,17,1722,1724,173,174,1775,1808,181,183,19,199,2,20,2004,203,205,21,219,22,2216,224,228,23,235,2360,2363,24,2400,246,259,26,2620,2737,2759,2764,28,284,290,3,30,304,305,306,307,31,339,35,350,373],\"min\":-9999,\"max\":3829},{\"attribute\":\"ISO_A2\",\"count\":196,\"type\":\"string\",\"values\":[\"-99\",\"AD\",\"AE\",\"AF\",\"AG\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BB\",\"BD\",\"BE\",\"BF\",\"BG\",\"BH\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CV\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DM\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FM\",\"FR\",\"GA\",\"GB\",\"GD\",\"GE\",\"GH\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HK\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KI\",\"KM\",\"KN\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\"]},{\"attribute\":\"LABELRANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,5,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"LATITUDE\",\"count\":242,\"type\":\"number\",\"values\":[-0.214988,-1.283347,-1.95359,-11.704158,-12.048013,-13.841545,-13.983295,-15.416644,-15.78334,-16.497974,-17.73335,-17.81779,-18.133016,-18.916637,-19.040971,-20.166639,-21.138512,-22.570006,-22.925023,-23.55868,-24.646313,-25.296403,-25.706921,-25.955277,-26.170044999999999,-26.316651,-26.466667,-29.119994,-29.316674,-3.376087,-33.047764,-33.450014,-33.920011,-34.602502,-34.858042,-35.283029,-36.850013,-37.820031,-4.259186,-4.329724,-4.616632,-41.299974,-6.174418,-6.183306,-6.800013,-8.516652,-8.559388,-8.838286,-9.437994,-9.464708,0.316659,0.333402,0.385389,1.293033,1.338188,10.500999,10.651997,11.55003,11.595014,11.865024,12.052633,12.113097,12.153017,12.370316,12.650015,12.969995,13.102003,13.148279,13.453876,13.516706,13.710002,13.749999,14.001973,14.102045,14.604159,14.621135,14.715832,14.916698,15.301016,15.333339,15.354733,15.588078,16.429991,16.783354,17.118037,17.252034,17.30203,17.966693,17.977077,18.086427,18.470073,18.541025,19.01699,19.442442,19.766557,2.066681,2.91402,21.033327,22.304981,22.494969],\"min\":-41.299974,\"max\":64.150024},{\"attribute\":\"LONGITUDE\",\"count\":243,\"type\":\"number\",\"values\":[-0.116722,-0.216716,-1.524724,-10.804752,-100.329985,-104.984016,-118.179981,-122.459978,-123.121644,-13.200006,-13.234216,-13.680235,-15.598361,-15.97534,-16.591701,-17.47313,-171.738642,-175.220564,-21.950014,-23.516689,-3.683352,-4.040048,-43.225021,-46.62502,-47.916052,-5.275503,-55.167031,-56.171052,-57.641505,-58.167029,-58.397531,-59.616527,-6.248906,-6.836131,-61.000008,-61.212062,-61.387013,-61.517031,-61.741643,-61.850034,-62.717009,-65.259516,-66.917037,-68.149985,-69.900085,-7.616367,-70.667041,-71.621014,-72.336035,-73.980017,-74.083344,-75.700015,-76.767434,-77.009419,-77.050062,-77.350044,-78.500051,-79.420021,-79.533037,-8.000039,-80.224106,-82.364182,-84.084051,-84.399949,-86.268492,-87.217529,-87.750055,-88.767073,-89.203041,-9.144866,-9.652522,-90.526966,-95.339979,-99.130988,1.222757,1.516486,10.179678,10.749979,100.516645,101.699983,101.701947,102.59998,103.855821,104.070019,104.916634,105.850014,106.829438,106.916616,11.516651,114.185009,114.933284,116.388286,12.447808,12.46667,12.483258,12.563486,120.569943,120.982217,121.436505,121.568333],\"min\":-175.220564,\"max\":179.216647},{\"attribute\":\"LS_MATCH\",\"count\":3,\"type\":\"number\",\"values\":[0,1,2],\"min\":0,\"max\":2},{\"attribute\":\"LS_NAME\",\"count\":242,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens2\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubayy\",\"Dublin2\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown1\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\"]},{\"attribute\":\"MAX_AREAKM\",\"count\":212,\"type\":\"number\",\"values\":[0,1,10,1021,103,104,105,106,10661,108,109,112,113,114,1182,118844,12,120,122,126,1275,128,130,131,1327,1332,1345,135,1373,14049,1409,141,143,145,1471,1472,1479,148,15,152,1554,157,16,160,1614,1639,16400,17,1700,1708,171,172,174,1748,177,178,179,18,181,183,184,186559,191,19435,195,197,2080,209,21,211,217,2286,23,2344,2350,236,237,2415,24244,243,244,2447,245,246,249,25,251,2667,27,270,2718,28,2836,2843,2861,2907,3,30,300,302],\"min\":0,\"max\":186559},{\"attribute\":\"MAX_AREAMI\",\"count\":181,\"type\":\"number\",\"values\":[0,1,10,1030,104,1049,1095,1098,11,1105,1122,116,117,1174,12,121,122,123,1235,126,13,130,133,1331,134,135,138,139,14,140,141,143,144,146,15,154,157,1578,16,160,162,165,166,168,169,17,173,174,176,179,180,182,183,1855,188,1892,191,19271,194,195,196,198,2,20,202,20591,206,209,21,210,2109,2148,215,2220,223,224,2241,227,229,23,2408,243,245,248,251,264,266,268,27,270,272,273,274,277,28,29,3,30,305,310],\"min\":0,\"max\":72030},{\"attribute\":\"MAX_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-1.433333,-10.658333,-100.125,-104.708333,-117.008333,-121.733333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.125,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.15,-46.108333,-47.783333,-5.216667,-55.1,-55.8,-57.316667,-57.816667,-58.116667,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.325,-72.033333,-72.716667,-74.008333,-75.45,-76.4,-76.733333,-76.833333,-77.258333,-78.291667,-78.608333,-79.4,-8.958333,-80.025,-82.208333,-83.858333,-83.975,-86.158333,-87.125,-87.141667,-88.75,-88.966667,-90.425,-95,-98.808333,0,0.033333,0.816667,1.483333,1.591667,10.575,101.016667,101.891667,102.816667,104,105,105.375,106.808333,107.041667,109.808333,11.091667,11.6,114.775,114.991667,117.325,12.481009,12.541667,12.658333,12.766667,120.65,121.333333,121.816667,121.9,125.608333],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MAX_BBXMIN\",\"count\":241,\"type\":\"number\",\"values\":[-0.35,-0.546866,-1.616667,-10.816667,-100.5,-105.241667,-118.966667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.499182,-47.056372,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-58.757731,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-66.993057,-68.258333,-7.116667,-7.7,-70.208333,-70.8,-71.658333,-72.441667,-74.091431,-74.266667,-75.983333,-76.866667,-77.153161,-77.308333,-77.4,-78.591667,-79.576315,-79.806554,-8.058333,-80.441667,-82.533333,-84.166667,-84.608333,-86.383333,-87.266667,-88.03629,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,10.440355,100.216667,101.491667,101.575,102.491667,103.383333,103.658333,104.441667,105.616287,106.473854,106.725,11.433333,113.983333,114.825,116.058333,12.316667,12.333333,12.391667,12.450494,12.983333,120.541667,120.925,121.013757,121.325],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MAX_BBYMAX\",\"count\":239,\"type\":\"number\",\"values\":[-1.075,-1.083333,-11.475,-11.808333,-13.641667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.544862,-20.108333,-21.125,-22.491667,-22.575,-23.241667,-24.6,-25.1,-25.641667,-25.75,-25.941667,-26.283333,-26.391667,-29.058333,-29.241667,-32.916667,-33.175,-33.6,-33.808333,-34.366667,-34.65,-35.183333,-36.8,-37.566667,-4.15,-4.291667,-4.6,-41.2,-5.875,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.475,10.05,10.541667,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.9,14.025,14.133333,14.158333,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.825,16.416667,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.491667,19.783333,19.908333,2.116667,21.783333,23.183333,23.641667],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MAX_BBYMIN\",\"count\":240,\"type\":\"number\",\"values\":[-0.30257,-1.433333,-11.758333,-12.281801,-13.866667,-14.408333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.075,-20.248073,-21.166667,-22.625,-23.033333,-23.842331,-24.7,-25.391667,-25.891667,-25.983333,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.675,-33.075,-33.556142,-34.091667,-34.108333,-34.933333,-35.008333,-35.455764,-36.964958,-38.0105,-4.333333,-4.478678,-4.65,-41.35,-6.208333,-6.383127,-6.933333,-8.583333,-8.933333,-9.441667,-9.508333,0,0.166719,0.283333,0.3,1.25,1.325,10.408333,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.516667,13.591667,13.975,14.033333,14.441667,14.571814,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.875,17.958333,18.033333,18.316667,18.491667,18.891667,19.233333,19.633333,2,2.708333,20.620237,22.056849,22.2],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MAX_NATSCA\",\"count\":5,\"type\":\"number\",\"values\":[0,100,20,300,50],\"min\":0,\"max\":300},{\"attribute\":\"MAX_PERKM\",\"count\":198,\"type\":\"number\",\"values\":[0,101,102,1021,10224,10267,105,106,1064,107,1086,1087,109,1100,1111,112,1135,116,1161,119,11900,1192,120,1202,121,122,123,12342,13,130296,131,132,1325,133,1354,142,144,149,15,151,153,154,155,16,160,162,164,1658,166,173,174,177,1773,179,18,184,186,1891,1898,190,1901,19314,196,199,202,205,208,210,215,218,219,22,2202,223,2284,234,2388,239,2412,2440,245,2459,249,25,250,256,26,261,266,27,270,278,28,283,286,287,288,2946,296,2982],\"min\":0,\"max\":130296},{\"attribute\":\"MAX_PERMI\",\"count\":189,\"type\":\"number\",\"values\":[0,10,101,102,103,1030,108,11,110,1101,111,114,115,116,1175,1179,118,1181,12001,122,123,126,127,129,130,134,135,136,1369,138,14,1419,145,1484,149,1499,1516,152,1528,155,159,16,162,165,166,168,17,172,173,176,177,179,18,1830,184,1853,187,189,19,192,194,197,198,2,20,206,21,212,213,214,215,22054,222,223,224,227,23,238,239,24,240,243,25,251,255,2581,263,27,274,28,284,285,286,292,295,309,31,3102,311,3113],\"min\":0,\"max\":80962},{\"attribute\":\"MAX_POP10\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10169723,10190861,1042928,1046787,1060587,107260,1072902,1073782,1074311,10811002,108543,1086244,10929146,11029015,1105973,1115771,111975,1122682,1123733,1124323,112927,1154222,1163890,1173386,1193251,1200842,12322855,12495084,12814908,128698,1289566,1291613,1316564,1337078,1369629,13762740,1381747,143230,144164,144390,1444949,1450902,14548962,145850,1472051,14936123,1504217,15220,1548599,1551977,1561335,1577138,1581087,1590116,1590482,159243,160966,16172884,166212,1662508,1712125,1727538,1732952,1742194,1759840,176365,1788020,1831176,1832316,1833439,1835853,1838722,1904377,191152,1946052,194824,1951272,1990917,2010175,2037124,206499,2066046,2084,2129163,2143900,2150614,2155592,218269,2182723,21887,2189383,219674,221736,224300,22534,2324568,23336],\"min\":0,\"max\":16172884},{\"attribute\":\"MAX_POP20\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10259448,1060587,107260,1072902,1073782,1074311,1076471,108543,1086244,10991915,11030955,1105973,11120470,1115771,111975,112927,1130999,11359674,1163890,1173386,11947707,1200842,1230007,128698,1289566,1291613,13143622,1316564,1337078,13414375,1381747,143230,144164,1443206,1444949,145850,1504217,15074060,15091561,15220,1551977,1577138,15779579,1581475,1588839,1590482,159243,160966,1610331,16172884,166212,1662508,1712468,17250245,1727538,1742194,17425624,176365,1788020,1823845,1826034,1829910,1831176,1831921,1833439,1835853,1836390,18577087,1874437,1892286,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2100407,2129163,21394172,2140496,2142805,2143900,2150614,2153391,218269,21887,219674,221736,2240256,224300,2244726,22534,2263899,2297630],\"min\":0,\"max\":24218878},{\"attribute\":\"MAX_POP300\",\"count\":219,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,1073782,1074311,1086244,1105973,1108173,1113489,1115771,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,1337078,1381747,143230,144164,1444949,145850,14870543,1504217,15220,1551977,15645640,1577138,1581475,1590116,1590482,159243,160966,1610331,166212,1662508,16718429,1727538,1740692,1742194,1788020,18203351,1823845,1826034,1831921,1835853,1838722,1838972,1839463,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,2066046,2084,2129163,2141255,2142805,2150614,2174327,21887,219674,21991959,22031364,221736,224300,2244726,22534,2297630,2322955,23336,23366503,23647944,23700631,2419489,2443605,2445384,244896,2498797,251136,254169,2564188,262796,264350,265361,2660614,26631586],\"min\":0,\"max\":87652060},{\"attribute\":\"MAX_POP310\",\"count\":45,\"type\":\"number\",\"values\":[0,10011551,10140950,1108173,11547877,1256924,12611862,1337078,137121250,14903021,15645640,1610331,18203351,18924578,18948089,20149761,21991959,2244726,224908923,2666328,26749011,30696820,31303497,3164008,3503466,3576473,3767139,3910939,40576904,4207001,42594594,44354170,4561697,4983714,5187749,5190755,5451385,5678280,6333154,8450289,8889292,9206246,9212245,968976,9960588],\"min\":0,\"max\":224908923},{\"attribute\":\"MAX_POP50\",\"count\":238,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,107260,1073782,1074311,1076471,108543,1086244,1105973,1108173,1115771,111975,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,13292739,1337078,1371285,1381747,143230,144164,1444949,145850,14868745,1504217,15220,1551977,1577138,1581475,1590116,1590482,159243,160966,1610331,16406759,16510327,1651113,166212,1662508,16718429,1727538,1740692,1742194,176365,1788020,18203351,1822603,1826034,1831921,1833439,1835853,1838722,1838972,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2129163,21387676,2141255,2142805,2150614,2174327,218269,21887,219674,22017580,221736,224300,2244726,22534,2297630,2312867,2322955,2324568,23336,2395309,2419489,24374217,2443605],\"min\":0,\"max\":53845691},{\"attribute\":\"MEAN_BBXC\",\"count\":242,\"type\":\"number\",\"values\":[-0.169651,-0.188893,-1.521746,-10.734923,-100.290632,-104.993967,-118.107478,-122.301354,-122.982768,-13.194643,-13.230082,-13.588647,-15.612698,-15.960139,-16.58125,-17.343779,-171.781117,-175.206798,-21.8825,-23.514907,-3.749399,-4.019846,-43.407551,-46.651489,-47.9714,-5.263708,-55.188737,-56.12273,-57.535385,-58.153788,-58.50845,-59.589731,-6.278983,-6.87491,-60.988377,-61.202183,-61.3775,-61.383365,-61.745833,-61.824059,-62.726389,-65.260317,-66.917919,-68.157765,-69.980546,-7.518511,-7.987419,-70.66127,-71.541251,-72.222424,-73.815782,-74.116517,-75.717666,-76.798044,-77.002668,-77.010199,-77.335571,-78.460061,-79.464213,-79.494919,-80.236416,-82.354344,-84.111698,-84.328739,-86.263402,-87.19911,-87.85874,-88.767803,-89.176042,-9.232769,-90.54419,-95.431928,-99.116655,0,1.190359,1.535473,10.202041,10.756508,100.545047,101.644598,101.716617,102.648054,103.821508,104.039242,104.78577,105.892881,106.883013,106.989399,11.518344,114.035195,114.908824,115.929521,12.419907,12.437175,12.462153,12.561474,120.598765,120.915044,121.053901,121.292375],\"min\":-175.206798,\"max\":178.472885},{\"attribute\":\"MEAN_BBYC\",\"count\":242,\"type\":\"number\",\"values\":[-0.198438,-1.249679,-11.639931,-12.041474,-13.837855,-14.028166,-15.403941,-15.824583,-16.506439,-17.728125,-17.832399,-18.106731,-18.875473,-19.030556,-2.034427,-20.221833,-21.142325,-22.551143,-22.856463,-23.558961,-24.656793,-25.307462,-25.755716,-25.880831,-26.187259,-26.315428,-26.430254,-29.128155,-29.350222,-3.227847,-33.034648,-33.461735,-33.846724,-33.954979,-34.681331,-34.828337,-35.309627,-36.896818,-37.835257,-4.251293,-4.384467,-4.626389,-41.285539,-6.162244,-6.313824,-6.833434,-8.559115,-8.851964,-9.42996,-9.433491,0,0.323809,0.338176,0.395238,1.33869,1.352586,10.451672,10.638816,11.488418,11.5715,11.871032,12.046528,12.120479,12.13336,12.365975,12.626173,12.841733,13.128773,13.145833,13.455208,13.522591,13.738798,13.761017,14.005921,14.083298,14.603015,14.742828,14.823118,14.938056,15.298056,15.327408,15.376031,15.559101,16.421065,16.85864,17.120565,17.248864,17.306019,17.967124,18.018509,18.092569,18.467176,18.56946,19.189154,19.473748,19.720606,2.054239,2.915909,20.873406,22.616509],\"min\":-41.285539,\"max\":64.116125},{\"attribute\":\"MEGACITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"MEGANAME\",\"count\":145,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Al Kuwayt (Kuwait City)\",\"Al-Khartum\",\"Al-Qahirah\",\"Amman\",\"Amsterdam\",\"Ankara\",\"Antananarivo\",\"Ar-Riyadh\",\"Asunción\",\"Athínai\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baku\",\"Bamako\",\"Bangalore\",\"Bayrut\",\"Beijing\",\"Beograd\",\"Berlin\",\"Bishkek\",\"Bogotá\",\"Brasília\",\"Brazzaville\",\"Bruxelles-Brussel\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Cape Town\",\"Caracas\",\"Chengdu\",\"Chicago\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de México\",\"Ciudad de Panamá (Panama City)\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Dar es Salaam\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dhaka\",\"Dimashq\",\"Dubayy\",\"Dublin\",\"El Djazaïr\",\"Freetown\",\"Harare\",\"Helsinki\",\"Hong Kong\",\"Houston\",\"Hà Noi\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Johannesburg\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Kigali\",\"Kinshasa\",\"Kolkata\",\"Krung Thep\",\"Kuala Lumpur\",\"Kyiv\",\"Kyoto\",\"København\",\"La Habana\",\"La Paz\",\"Lagos\",\"Lima\",\"Lisboa\",\"Lomé\",\"London\",\"Los Angeles-Long Beach-Santa Ana\",\"Luanda\",\"Lusaka\",\"Madrid\",\"Managua\",\"Manila\",\"Maputo\",\"Melbourne\",\"Miami\",\"Minsk\",\"Monrovia\",\"Monterrey\",\"Montevideo\",\"Moskva\",\"Mumbai\",\"Muqdisho\",\"N'Djaména\",\"Nairobi\",\"Nay Pyi Taw\",\"New York-Newark\",\"Niamey\",\"Osaka-Kobe\"]},{\"attribute\":\"MIN_AREAKM\",\"count\":200,\"type\":\"number\",\"values\":[0,1,10,1010,1035,104,105,1054,106,1078,108,109,1093,1100,1114,112,1121,1124,113,1137,114,12,120,122,1249,126,1265,128,130,1303,131,1338,1345,141,143,1432,1434,145,1479,148,15,1561,16,160,166,1675,169,17,171,172,174,177,178,179,18,181,183,184,187,191,1914,192,195,197,202,209,21,211,2130,217,218,224,226,23,233,236,237,2388,244,2443,245,246,2490,25,2512,257,264,27,270,275,2761,278,28,3,30,305,310,316,317,32],\"min\":0,\"max\":5912},{\"attribute\":\"MIN_AREAMI\",\"count\":166,\"type\":\"number\",\"values\":[0,1,10,102,104,106,1066,107,11,118,12,120,122,125,127,129,13,131,133,134,135,1362,139,14,144,146,1464,147,15,156,158,16,160,165,166,168,169,17,171,172,174,178,179,183,185,188,189,191,194,195,196,198,2,20,202,205,206,207,21,215,220,227,2283,229,23,232,247,257,26,266,268,269,27,270,273,279,28,29,298,3,30,310,313,315,32,330,334,34,342,345,347,35,351,37,375,38,390,4,40,400],\"min\":0,\"max\":2283},{\"attribute\":\"MIN_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-0.098725,-1.433333,-10.658333,-100.125,-104.866667,-117.857183,-122.358333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.2,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.158333,-46.383333,-47.783333,-5.216667,-55.107566,-55.8,-57.543999,-58.116667,-58.175,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.57441,-72.033333,-73.574946,-74.008333,-75.45,-76.733333,-76.752653,-76.85,-77.258333,-78.291667,-79.130272,-79.4,-8.958333,-80.175719,-82.208333,-83.879976,-83.983333,-86.158333,-87.141667,-87.528138,-88.75,-88.966667,-90.425,-95.133333,-99.018165,0,0.307108,1.483333,1.591667,10.497585,100.844293,101.841667,101.891667,102.725,104,104.433333,105,106.2294,106.932506,107.041667,11.091667,11.6,114.3,114.991667,117.208333,12.481009,12.541667,12.658333,12.766667,120.65,121.038985,121.622484,121.9],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MIN_BBXMIN\",\"count\":238,\"type\":\"number\",\"values\":[-0.35,-1.091667,-1.616667,-10.816667,-100.5,-105.241667,-118.991667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.75,-47.058333,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-59.016667,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-67.133333,-68.258333,-7.116667,-7.7,-70.208333,-70.958333,-71.658333,-72.441667,-74.266667,-74.75,-75.983333,-76.866667,-77.166667,-77.4,-77.533333,-78.591667,-79.591667,-8.058333,-80.008333,-80.466667,-82.533333,-84.366667,-84.875,-86.383333,-87.266667,-88.408333,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,1.658333,10.333333,101.358333,102.491667,103.125,103.633333,104.441667,104.975,105.891667,106.725,11.433333,111.441667,112.533333,114.825,119.016667,12.116667,12.333333,12.391667,12.958333,12.983333,120.141667,120.541667,120.741667,125.516667],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MIN_BBYMAX\",\"count\":241,\"type\":\"number\",\"values\":[-1.083333,-1.76663,-11.475,-11.808333,-13.691667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.95,-20.108333,-21.125,-22.491667,-22.837896,-23.358333,-24.6,-25.208333,-25.641667,-25.75,-25.991667,-26.283333,-26.391667,-29.058333,-29.241667,-33.016667,-33.175,-33.641667,-33.808333,-34.375,-34.65,-35.183333,-36.825,-37.589905,-4.15,-4.291667,-4.6,-41.2,-6.016667,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.425,10.041667,10.533671,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.872295,13.9,14.025,14.133333,14.702876,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.699422,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.308333,19.640315,19.783333,2.116667,21.319209,22.4,22.575491],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MIN_BBYMIN\",\"count\":237,\"type\":\"number\",\"values\":[-0.391667,-1.433333,-11.758333,-12.316667,-13.866667,-14.433333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.991667,-20.333333,-21.166667,-22.625,-23.033333,-23.891667,-24.7,-25.491667,-25.891667,-25.991667,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.841667,-33.075,-33.7,-34.091667,-34.108333,-34.933333,-35.008333,-35.483333,-37.091667,-38.208333,-4.333333,-4.5,-4.65,-41.35,-6.208333,-6.933333,-7.716667,-8.583333,-8.933333,-9.441667,-9.508333,0,0.033333,0.283333,0.3,1.25,1.325,10.325,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.5,13.591667,13.975,14.016667,14.033333,14.433333,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.8,17.958333,18.033333,18.316667,18.491667,18.891667,19.2,19.283333,19.633333,19.866667,2,2.7,21.925],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MIN_PERKM\",\"count\":192,\"type\":\"number\",\"values\":[0,101,102,105,106,109,112,1148,116,1175,1180,119,120,121,122,123,1257,126,128,13,130,131,132,133,136,1360,1365,137,142,1439,144,149,1494,15,153,155,156,158,16,160,162,164,166,170,173,174,175,177,18,1837,184,186,190,1908,196,199,201,203,205,208,215,217,219,22,2219,222,223,228,2296,233,237,239,240,244,245,249,25,250,251,256,258,26,261,266,27,274,28,280,287,288,293,295,30,304,309,31,310,311,315,318],\"min\":0,\"max\":2296},{\"attribute\":\"MIN_PERMI\",\"count\":181,\"type\":\"number\",\"values\":[0,10,100,101,102,103,106,108,109,11,110,114,1141,115,116,118,1186,122,123,124,125,126,127,129,130,134,135,136,1379,138,14,142,1427,145,147,149,152,155,156,159,16,160,162,165,17,170,174,179,18,182,183,189,19,192,193,196,197,198,2,20,21,211,215,216,217,219,221,222,224,227,23,231,234,238,24,240,243,247,248,25,251,254,255,27,274,276,28,285,286,289,29,290,291,293,295,300,302,309,31,317],\"min\":0,\"max\":1427},{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEALT\",\"count\":43,\"type\":\"string\",\"values\":[\"Al Kuwayt|Kuwait City\",\"Al-Khartum\",\"Al-Qahirah\",\"Ar-Riyadh\",\"Asunción\",\"Athinai\",\"Bayrut\",\"Bengaluru\",\"Bogotá\",\"Brasília\",\"Bruxelles-Brussel\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de México\",\"Ciudad de Panamá|Panama City|Panama\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dimashq\",\"El Djazaïr\",\"Hà Noi\",\"Krung Thep\",\"Kyiv\",\"La Habana\",\"Lomé\",\"Los Angeles-Long Beach-Santa Ana\",\"Muqdisho\",\"N'Djaména\",\"Nay Pyi Taw\",\"New York-Newark\",\"Osaka-Kobe\",\"Ottawa-Gatineau\",\"P'yongyang\",\"Phnum Pénh\",\"San Francisco-Oakland\",\"San José\",\"Sana'a'\",\"Sao Paulo|São Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Valparaíso\",\"Washington D.C.\",\"Yangon\",\"Yaoundé\",\"Ürümqi|Wulumqi\"]},{\"attribute\":\"NAMEASCII\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEDIFF\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"NAMEPAR\",\"count\":12,\"type\":\"string\",\"values\":[\"Athínai\",\"Beograd\",\"Bombay\",\"Bucuresti\",\"Calcutta\",\"Copenhagen\",\"Dubayy\",\"Lisboa\",\"Moskva\",\"Praha\",\"Warszawa\",\"Wien\"]},{\"attribute\":\"NATSCALE\",\"count\":8,\"type\":\"number\",\"values\":[10,110,20,200,30,300,50,600],\"min\":10,\"max\":600},{\"attribute\":\"POP1950\",\"count\":135,\"type\":\"number\",\"values\":[0,1002,1016,1021,104,1041,106,1066,1068,110,111,1116,11275,1212,1216,12338,129,1298,1302,1304,1322,133,1332,1347,1360,137,138,1415,143,145,1452,148,15,150,1544,1618,1682,1690,1700,171,177,18,183,1855,1884,194,20,202,206,208,2086,211,219,22,2334,24,2494,253,258,275,280,281,282,284,2857,287,2883,2950,305,31,319,32,322,328,33,3352,336,341,356,36,364,366,367,392,4046,411,4147,418,4331,4513,46,468,4999,505,5098,513,516,522,5356,556],\"min\":0,\"max\":12338},{\"attribute\":\"POP1955\",\"count\":139,\"type\":\"number\",\"values\":[0,1016,104,106,1091,110,111,112,1227,1248,1249,125,1289,129,1306,131,13219,136,1365,1368,13713,1396,140,1405,1440,1449,148,1539,1553,1563,1574,1618,1712,1714,174,182,184,186,1872,189,1906,192,1972,201,2018,2021,2087,21,2121,2143,220,235,246,25,252,257,265,27,28,281,292,3029,3044,312,314,3299,34,340,342,3432,3592,37,370,374,376,377,3801,387,40,405,409,41,414,425,431,439,451,46,461,4628,468,49,498,501,5055,5120,5154,53,533,556],\"min\":0,\"max\":13713},{\"attribute\":\"POP1960\",\"count\":141,\"type\":\"number\",\"values\":[0,1001,1002,1005,1019,1106,1119,112,1147,1151,1163,1165,1166,119,124,1269,128,1284,1285,130,1316,1361,137,14164,1436,1453,1485,1514,156,1592,162,1634,16679,174,1744,1756,179,181,1811,1814,1823,1851,1873,192,1980,199,2089,2135,2151,218,219,2200,2274,23,230,233,236,2361,2392,2456,247,248,252,2620,263,2679,283,293,311,319,3260,34,344,347,359,3680,382,384,389,393,3970,40,4060,415,419,433,4374,438,440,443,446,448,45,476,4945,5012,508,519,538,551],\"min\":0,\"max\":16679},{\"attribute\":\"POP1965\",\"count\":143,\"type\":\"number\",\"values\":[0,1003,1038,1049,109,111,112,1132,1135,1154,1165,1206,121,1212,1229,1230,1288,132,1323,1327,1373,1377,138,1389,1396,146,148,15177,1525,158,1598,160,1614,1657,169,1709,172,1760,1780,1878,1880,2001,20284,2068,208,2080,2093,2121,2135,222,227,2284,2294,233,235,2361,2390,248,2511,2584,259,268,269,2780,2829,287,2898,29,298,299,303,310,315,319,3191,322,3232,3297,337,339,3452,360,369,394,399,404,436,45,461,472,473,4738,477,478,481,482,4854,488,499,51],\"min\":0,\"max\":20284},{\"attribute\":\"POP1970\",\"count\":138,\"type\":\"number\",\"values\":[0,1029,1035,1045,1054,1070,1076,111,1114,1182,1254,1267,1274,129,1298,1300,1307,1341,1362,1374,1380,1396,1403,1414,1444,147,1505,155,1568,1592,1615,16191,163,164,1655,1693,1741,1779,1817,183,192,1946,206,2060,2070,2075,2141,222,223,23298,2334,238,2383,2485,2488,2529,2535,2647,2667,272,2772,278,298,2980,3110,3135,3206,3290,340,3458,3521,3534,357,359,363,366,371,388,3915,398,408,417,433,451,455,459,460,472,48,494,500,501,507,525,531,5312,532,548,552,553],\"min\":0,\"max\":23298},{\"attribute\":\"POP1975\",\"count\":142,\"type\":\"number\",\"values\":[0,100,1015,1016,10690,107,1120,1122,1126,1150,1172,1198,1206,1339,1348,1386,1403,141,1429,1444,1482,149,1499,1500,1547,15880,1589,1610,1612,1622,167,1702,1709,1793,180,1848,1884,1890,1911,1926,198,2005,2023,2030,2059,2103,2111,2151,2221,226,2263,231,2342,240,2561,257,2590,2620,2626,26615,2738,2770,284,292,2960,3040,3130,3138,329,3300,356,3600,363,3696,3842,385,3890,3943,398,4273,440,443,445,454,456,4813,485,4999,500,528,530,532,572,575,581,582,596,6034,611,624],\"min\":0,\"max\":26615},{\"attribute\":\"POP1980\",\"count\":143,\"type\":\"number\",\"values\":[0,1042,1055,1057,1074,1090,1096,1164,1175,1179,12089,1240,1247,125,128,1293,13010,1318,1356,1376,1384,1416,1454,15601,1565,1574,1609,1621,1623,1625,1654,1656,1701,1818,1842,1865,189,1891,1913,1992,2049,2053,2057,2109,2201,2217,225,2293,2378,238,2415,2424,2449,254,257,2572,2575,2606,2656,274,2765,2777,2812,28549,2987,3008,3056,3122,3145,3227,324,325,3266,337,3390,344,3525,361,371,3721,415,423,4253,4397,4438,446,4609,469,4723,489,5079,525,526,533,538,550,551,580,5955,5984],\"min\":0,\"max\":28549},{\"attribute\":\"POP1985\",\"count\":144,\"type\":\"number\",\"values\":[0,1012,1013,1016,10181,1029,10341,10350,1046,1056,1090,1121,1122,1123,1160,1162,1177,1181,1197,1295,13395,1359,1396,14109,1437,1474,1476,1508,1546,1559,1566,15827,1585,1596,1611,1654,1660,1672,168,1681,1714,1716,1773,1879,1925,1950,1958,2005,2036,204,2069,2195,2213,2273,2406,2410,2446,2518,260,2629,2639,2658,2693,2709,2793,2805,2854,2935,297,30304,3047,3060,3063,3355,3395,3429,3432,344,345,3500,3521,3607,393,402,4087,412,4201,424,427,4355,460,466,4660,471,492,5070,5116,514,5279,5407],\"min\":0,\"max\":30304},{\"attribute\":\"POP1990\",\"count\":144,\"type\":\"number\",\"values\":[0,1035,1038,1042,1047,10513,10544,1062,1088,10883,10890,1091,11035,1120,1134,1161,1162,1174,1175,1191,1197,1212,1224,12308,1293,1306,1316,1380,1392,1405,14776,1500,1522,1528,15312,1546,1559,1568,1607,16086,1628,1680,1691,1733,1760,1791,1863,1898,1908,2005,2026,2040,2096,2100,2102,2108,2155,2184,219,2325,2360,2526,2537,2561,2574,2594,2682,2711,2767,2907,2922,2955,2961,3016,3070,3117,3126,32530,330,3376,3422,343,3448,3450,3632,3807,3969,398,4036,4092,432,4414,4616,473,4740,4764,477,504,529,537],\"min\":0,\"max\":32530},{\"attribute\":\"POP1995\",\"count\":144,\"type\":\"number\",\"values\":[0,10174,10256,1034,10423,1045,1048,11052,1107,11154,11339,1138,1142,1147,1149,1160,1168,1169,1190,11924,1194,1213,1217,1255,1267,1268,1287,1379,14111,1415,1417,1427,1584,15948,1616,1649,1652,1668,1670,1678,16811,1688,16943,1715,1747,1755,1766,1789,1804,1849,1893,1953,2018,2116,2127,2157,2183,2257,2265,2295,2394,2442,2535,2590,2600,2676,2781,2816,2838,2842,289,2951,2961,3035,3095,3122,3213,3242,3257,3353,33587,3403,3424,3425,3471,3478,3651,3839,4197,4431,4447,452,4598,464,4701,4744,4964,509,526,542],\"min\":0,\"max\":33587},{\"attribute\":\"POP2000\",\"count\":141,\"type\":\"number\",\"values\":[0,10016,1005,1007,1019,1023,10285,1032,10534,1063,1072,1073,1077,1079,10803,1084,1096,1097,1100,1110,1111,11165,1127,1128,1160,1172,11814,11847,1192,1201,1206,1219,1233,13058,1306,13243,1357,1361,1365,1379,1390,1487,1499,1507,1561,16086,1653,1666,1674,1700,17099,1730,1733,17846,1787,18022,1806,1854,1877,1949,1959,1963,1998,2029,2044,2116,2135,2158,2187,2233,2493,2591,2606,2640,2672,2715,2732,2746,2752,2754,2864,3032,3043,3117,3179,3236,3266,3384,3385,3433,34450,3542,3553,3567,3752,3849,3919,3949,4017,4078],\"min\":0,\"max\":34450},{\"attribute\":\"POP2005\",\"count\":143,\"type\":\"number\",\"values\":[0,1023,1037,10416,1042,1044,10717,10761,1085,1093,1094,1103,1106,1119,11258,1140,11469,11487,1164,1166,1189,1216,1217,12307,1248,12553,12576,1261,1272,1273,1315,1318,1334,1363,1368,1374,1405,1409,1415,14282,14503,1489,1515,1525,1527,1590,1593,1647,1693,1742,1762,1775,1777,1801,1805,18202,18333,1867,18732,18735,1885,1888,1936,1984,2025,2062,2093,2098,2158,2189,2241,2264,2330,2434,2606,2672,2679,2762,2787,2902,2930,2994,3012,3087,3138,3199,3230,3258,3265,3341,3348,3387,3391,35327,3533,3564,3572,3579,3641,3928],\"min\":0,\"max\":35327},{\"attribute\":\"POP2010\",\"count\":143,\"type\":\"number\",\"values\":[0,10061,1024,1031,1041,10452,1059,1060,1085,1099,1100,1102,11100,11106,1115,11294,1145,1149,1162,11748,1185,11893,1245,12500,1264,12795,1281,1284,1328,1338,13485,1355,1379,1420,1433,1446,1448,1452,1466,14787,1494,14987,1513,1572,1576,1590,1611,1679,1697,1701,1705,1707,1743,1805,1846,1870,18845,1892,18978,19028,19040,1942,1998,2008,2063,2121,2146,2151,2154,2174,2184,2189,2313,2315,2466,2603,2604,2709,2812,2930,2985,3010,3100,3112,3181,3215,3242,3277,3300,3339,3354,3406,3435,3450,35676,3599,3712,3716,3728,3802],\"min\":0,\"max\":35676},{\"attribute\":\"POP2015\",\"count\":144,\"type\":\"number\",\"values\":[0,1022,1024,1027,1029,1044,10495,10530,10572,1087,1096,1098,1102,1104,1106,1108,1127,11337,1139,1160,11662,11741,1182,1185,1212,12171,12503,12773,1285,13089,1321,1324,1374,1379,1409,1421,14796,1500,1504,1505,1516,1519,1520,15577,15789,1597,1621,1645,1651,1663,1664,1669,1692,1708,1724,1744,1787,1793,1804,1846,1877,1931,1941,19441,1947,19485,19582,1994,20072,2030,2159,2209,2219,2247,2298,2305,2322,2332,2340,2345,2385,2396,2651,2675,2748,2856,2890,3098,3256,3267,3319,3333,3346,3357,3363,3423,3453,3544,3574,36094],\"min\":0,\"max\":36094},{\"attribute\":\"POP2020\",\"count\":143,\"type\":\"number\",\"values\":[0,10007,1004,1015,1029,10524,1064,10792,1092,1102,1108,1113,11177,11313,11365,1152,1159,1165,1169,1177,1185,1232,1233,12403,1258,12775,12786,1281,1284,12842,1308,13160,13432,13465,1398,1405,1457,1482,1506,1527,1587,1649,1655,1670,1676,17015,17039,1709,17214,1729,1735,1744,1794,1804,1839,1864,1879,1921,1938,1949,1979,1984,19974,2006,20189,2028,2035,2038,2051,20544,2058,2130,2151,21946,2229,2277,2310,2416,2451,2502,2525,2532,2558,2592,2620,2621,2688,2770,2862,2955,2981,2996,3275,3278,3306,3330,3434,3453,3475,3504],\"min\":0,\"max\":36371},{\"attribute\":\"POP2025\",\"count\":144,\"type\":\"number\",\"values\":[0,10031,1011,1044,10526,1078,1095,1102,1104,1114,1132,11368,1148,1159,11689,11695,1195,1196,1200,1236,1257,1268,1274,1317,13179,1321,1326,13461,13653,13807,13875,13892,1413,14134,1441,14451,1481,1515,1544,1578,1580,1627,1653,1655,1736,1744,1753,1776,1797,1804,1820,18466,18707,1883,1894,1938,19422,1949,2027,2037,20370,20695,2083,2097,2111,21124,2119,2142,2150,2189,2235,2312,2380,2393,24051,2410,2457,2476,2506,2590,2633,2636,2642,2713,2722,2772,2790,2851,2971,3012,3041,3058,3104,3293,3300,3330,3436,3482,3537,3600],\"min\":0,\"max\":36399},{\"attribute\":\"POP2050\",\"count\":143,\"type\":\"number\",\"values\":[0,10036,10526,1089,1096,1102,1112,1114,11368,1159,1163,1193,12102,1220,1236,12363,1315,1320,1332,13413,1343,1359,13672,13768,1406,1411,14545,1461,1472,1475,14808,1520,15561,15796,1604,1655,16762,1690,1715,1736,1737,1744,1759,1804,1883,1902,1907,1938,19412,1949,2028,2047,20560,20628,2077,2083,21009,21428,2150,2172,2173,2178,2187,22015,2222,2247,2316,2444,2496,2529,2549,2560,2632,26385,2661,2715,2772,2791,2855,2856,2885,2892,2911,2956,3038,3086,3118,3198,3214,3305,3326,3330,3346,3358,3382,3436,3605,3619,3630,36400],\"min\":0,\"max\":36400},{\"attribute\":\"POP_MAX\",\"count\":240,\"type\":\"number\",\"values\":[10061000,1024000,1029300,1031000,1041000,10452000,1059000,1060000,107260,1085000,1086244,1099000,1100000,1102000,11100000,11106000,1115000,111975,112927,11294000,113364,1145000,1149000,115826,1162000,11748000,1185000,11893000,1240000,1245000,12500000,1264000,12795000,12797394,1281000,1284000,128698,1328000,1338000,1355000,1379000,1406000,1420000,1433000,1446000,1448000,1450000,1452000,145850,1466000,14787000,1494000,14987000,1513000,15220,155963,1572000,1576000,1590000,1611000,166212,1679000,1697000,1701000,1705000,1707000,1743000,175399,1805000,1846000,1870000,188084,18845000,18978000,19028000,19040000,191152,1942000,1998000,2008000,2063000,206499,208411,2121000,2122300,2151000,2154000,217000,2174000,218269,2184000,21887,2189000,224300,224838,227940,2313000,2313328,23336,234331],\"min\":500,\"max\":35676000},{\"attribute\":\"POP_MIN\",\"count\":243,\"type\":\"number\",\"values\":[10021295,1005257,1019022,103693,10452000,1060000,1060587,10634,10811002,1085000,10929146,1093485,1099000,11177,111975,1122874,1137347,113906,115826,1163890,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1297281,1338000,13381,1353189,136473,13768,1391433,1399814,140000,1431270,1448000,1459640,14608512,1466000,148416,1494000,1508225,1536,1542813,1548599,15500,155963,157474,1577138,159243,15938,160966,162135,1655753,16571,1662508,1679000,1702139,1712125,1724,1731000,1742194,176365,180541,1815679,1835853,1892000,192385,193563,194530,194824,1951272,1963264,1974647,1977663,1978028,198214,1990917,199200,200,200452,2010175,2026469,20500,2087,217000,221736,22256,223757,22534,22881,229398,234032,234168,235017,23658,24226],\"min\":200,\"max\":14608512},{\"attribute\":\"POP_OTHER\",\"count\":218,\"type\":\"number\",\"values\":[0,10018444,1014546,102371,10271457,1037811,1038288,10585385,1060640,1060747,1061388,106219,1072567,1074640,1081361,1088042,1088194,1099610,111975,112572,1149981,11522944,1152904,1154748,11622929,1166878,1174778,12018058,1208361,1240558,12426085,1256715,1271541,1276128,12945252,1301407,130815,1365454,13720557,140594,142265,1434681,1435528,1443084,1480886,1490164,1498020,14995538,1518801,1521278,15220,1557919,158896,160116,1604086,1611692,1636574,164877,1661980,1675117,16803572,1682968,1718895,1742507,176365,1772679,1795582,1805353,18171,1821489,1827367,1831877,1844658,191814,1930305,1951272,2012431,2029349,2044401,2050212,206499,2139587,2153702,2175991,21887,221736,222513,222985,22478,2306851,2325931,23336,2334371,2381280,2385397,2391150,2401318,243794,2456292,2470140],\"min\":0,\"max\":16803572},{\"attribute\":\"RANK_MAX\",\"count\":12,\"type\":\"number\",\"values\":[10,11,12,13,14,2,4,5,6,7,8,9],\"min\":2,\"max\":14},{\"attribute\":\"RANK_MIN\",\"count\":14,\"type\":\"number\",\"values\":[1,10,11,12,13,14,2,3,4,5,6,7,8,9],\"min\":1,\"max\":14},{\"attribute\":\"SCALERANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,4,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"SOV0NAME\",\"count\":197,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"French Republic\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kingdom of Norway\",\"Kingdom of Spain\",\"Kingdom of the Netherlands\",\"Kiribati\",\"Korea, North\",\"Korea, South\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\"]},{\"attribute\":\"SOV_A3\",\"count\":197,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\"]},{\"attribute\":\"TIMEZONE\",\"count\":187,\"type\":\"string\",\"values\":[\"Africa/Abidjan\",\"Africa/Accra\",\"Africa/Addis_Ababa\",\"Africa/Algiers\",\"Africa/Asmara\",\"Africa/Bamako\",\"Africa/Bangui\",\"Africa/Banjul\",\"Africa/Bissau\",\"Africa/Blantyre\",\"Africa/Brazzaville\",\"Africa/Bujumbura\",\"Africa/Cairo\",\"Africa/Casablanca\",\"Africa/Conakry\",\"Africa/Dakar\",\"Africa/Dar_es_Salaam\",\"Africa/Djibouti\",\"Africa/Douala\",\"Africa/El_Aaiun\",\"Africa/Freetown\",\"Africa/Gaborone\",\"Africa/Harare\",\"Africa/Johannesburg\",\"Africa/Kampala\",\"Africa/Khartoum\",\"Africa/Kigali\",\"Africa/Kinshasa\",\"Africa/Lagos\",\"Africa/Libreville\",\"Africa/Lome\",\"Africa/Luanda\",\"Africa/Lusaka\",\"Africa/Malabo\",\"Africa/Maputo\",\"Africa/Maseru\",\"Africa/Mbabane\",\"Africa/Mogadishu\",\"Africa/Monrovia\",\"Africa/Nairobi\",\"Africa/Ndjamena\",\"Africa/Niamey\",\"Africa/Nouakchott\",\"Africa/Ouagadougou\",\"Africa/Porto-Novo\",\"Africa/Tunis\",\"Africa/Windhoek\",\"America/Antigua\",\"America/Argentina/Buenos_Aires\",\"America/Belize\",\"America/Bogota\",\"America/Caracas\",\"America/Chicago\",\"America/Dominica\",\"America/Fortaleza\",\"America/Grenada\",\"America/Guatemala\",\"America/Guayaquil\",\"America/Guyana\",\"America/Havana\",\"America/Jamaica\",\"America/La_Paz\",\"America/Lima\",\"America/Los_Angeles\",\"America/Managua\",\"America/Mexico_City\",\"America/Monterrey\",\"America/Montreal\",\"America/Nassau\",\"America/New_York\",\"America/Panama\",\"America/Paramaribo\",\"America/Port-au-Prince\",\"America/Port_of_Spain\",\"America/Sao_Paulo\",\"America/St_Kitts\",\"America/Tegucigalpa\",\"America/Toronto\",\"America/Vancouver\",\"Asia/Amman\",\"Asia/Ashgabat\",\"Asia/Baghdad\",\"Asia/Bahrain\",\"Asia/Baku\",\"Asia/Bangkok\",\"Asia/Beirut\",\"Asia/Bishkek\",\"Asia/Brunei\",\"Asia/Chongqing\",\"Asia/Colombo\",\"Asia/Dhaka\",\"Asia/Dili\",\"Asia/Dubai\",\"Asia/Dushanbe\",\"Asia/Harbin\",\"Asia/Ho_Chi_Minh\",\"Asia/Hong_Kong\",\"Asia/Jakarta\",\"Asia/Jerusalem\",\"Asia/Kabul\"]},{\"attribute\":\"UN_ADM0\",\"count\":116,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Algeria\",\"Angola\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Benin\",\"Bolivia\",\"Brazil\",\"Bulgaria\",\"Burkina Faso\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Chad\",\"Chile\",\"China\",\"China, Hong Kong Special Administrative Region\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Cuba\",\"Czech Republic\",\"Côte d'Ivoire\",\"Democratic People's Republic of Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Ethiopia\",\"Finland\",\"France\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Haiti\",\"Honduras\",\"Hungary\",\"India\",\"Indonesia\",\"Iran (Islamic Republic of)\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Japan\",\"Jordan\",\"Kenya\",\"Kuwait\",\"Kyrgyzstan\",\"Lebanon\",\"Liberia\",\"Libyan Arab Jamahiriya\",\"Madagascar\",\"Malaysia\",\"Mali\",\"Mexico\",\"Mongolia\",\"Morocco\",\"Mozambique\",\"Myanmar\",\"Nepal\",\"Netherlands\",\"New Zealand\",\"Nicaragua\",\"Niger\",\"Nigeria\",\"Norway\",\"Pakistan\",\"Panama\",\"Paraguay\",\"Peru\",\"Philippines\",\"Poland\",\"Portugal\",\"Republic of Korea\",\"Romania\",\"Russian Federation\",\"Rwanda\",\"Saudi Arabia\",\"Senegal\",\"Serbia\",\"Sierra Leone\",\"Singapore\",\"Somalia\",\"South Africa\",\"Spain\",\"Sudan\",\"Sweden\",\"Syrian Arab Republic\"]},{\"attribute\":\"UN_FID\",\"count\":145,\"type\":\"number\",\"values\":[0,111,118,13,14,15,16,161,166,168,17,171,172,173,174,175,176,178,179,18,180,182,183,189,191,192,196,198,2,200,201,206,207,208,209,210,211,219,24,245,253,274,276,280,297,3,300,302,304,308,31,310,313,315,318,320,321,322,324,327,336,339,340,341,342,344,345,348,349,352,359,367,369,372,375,376,377,378,379,381,382,384,385,386,392,397,4,401,408,409,411,414,418,419,422,426,439,440,444,447],\"min\":0,\"max\":589},{\"attribute\":\"UN_LAT\",\"count\":145,\"type\":\"number\",\"values\":[-0.22,-1.26,-1.95,-12.08,-15.42,-15.79,-17.82,-18.9,-22.72,-23.58,-25.3,-25.73,-25.96,-26.17,-33.02,-33.88,-33.97,-34.62,-34.92,-36.9,-37.85,-4.28,-4.32,-6.16,-6.81,-8.81,0,0.32,1.26,10.49,11.56,12.1,12.15,12.48,12.65,12.97,13.51,13.7,13.75,14.09,14.61,14.68,15.36,15.55,16.87,18.48,18.52,19.07,19.42,19.75,2.04,21.03,22.27,22.54,23.04,23.7,24.15,24.65,25.03,25.27,25.67,25.83,27.71,29.38,29.77,3.14,3.86,30.07,30.67,31.24,31.94,32.04,33.33,33.49,33.6,33.71,33.79,33.88,34,34.01,34.34,34.53,34.63,35,35.68,35.77,36.78,37.54,37.79,37.94,38.72,38.89,39.02,39.57,39.9,39.92,4.63,40.2,40.32,40.44],\"min\":-37.85,\"max\":60.19},{\"attribute\":\"UN_LONG\",\"count\":144,\"type\":\"number\",\"values\":[-0.17,-0.2,-1.67,-10.79,-100.31,-105.07,-110.3,-118.25,-122.38,-122.96,-13.23,-13.67,-17.45,-3.69,-4.02,-43.45,-46.62,-47.89,-56.16,-57.62,-58.44,-6.25,-6.83,-66.89,-69.89,-7.63,-7.98,-71.55,-72.34,-73.9,-74.08,-75.65,-76.95,-77.04,-78.52,-79.41,-79.51,-80.27,-80.96,-82.41,-84.07,-84.34,-86.27,-87.2,-87.64,-89.2,-9.12,-90.52,-95.4,-99.12,0,1.2,10.71,100.51,101.7,103.83,104.07,104.91,105.82,106.8,106.91,11.51,114.17,116.38,12.51,12.54,120.96,121.47,121.5,125.75,126.93,13.23,13.32,135.51,135.75,139.8,14.45,145.07,15.24,15.28,15.29,151.02,16.32,17.99,174.76,18.48,19.09,2.12,2.43,20.41,21.01,23.33,23.65,24.97,26.12,27.57,28,28.17,28.21,29],\"min\":-122.96,\"max\":174.76},{\"attribute\":\"WORLDCITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1}]}]}}", -"maxzoom": "20", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":3,\"fields\":{\"ADM0CAP\":\"Number\",\"ADM0NAME\":\"String\",\"ADM0_A3\":\"String\",\"ADM1NAME\":\"String\",\"ADMIN1_COD\":\"Number\",\"CAPALT\":\"Number\",\"CAPIN\":\"String\",\"CHANGED\":\"Number\",\"CHECKME\":\"Number\",\"CITYALT\":\"String\",\"COMPARE\":\"Number\",\"DIFFASCII\":\"Number\",\"DIFFNOTE\":\"String\",\"ELEVATION\":\"Number\",\"FEATURECLA\":\"String\",\"FEATURE_CL\":\"String\",\"FEATURE_CO\":\"String\",\"GEONAMEID\":\"Number\",\"GEONAMESNO\":\"String\",\"GN_ASCII\":\"String\",\"GN_POP\":\"Number\",\"GTOPO30\":\"Number\",\"ISO_A2\":\"String\",\"LABELRANK\":\"Number\",\"LATITUDE\":\"Number\",\"LONGITUDE\":\"Number\",\"LS_MATCH\":\"Number\",\"LS_NAME\":\"String\",\"MAX_AREAKM\":\"Number\",\"MAX_AREAMI\":\"Number\",\"MAX_BBXMAX\":\"Number\",\"MAX_BBXMIN\":\"Number\",\"MAX_BBYMAX\":\"Number\",\"MAX_BBYMIN\":\"Number\",\"MAX_NATSCA\":\"Number\",\"MAX_PERKM\":\"Number\",\"MAX_PERMI\":\"Number\",\"MAX_POP10\":\"Number\",\"MAX_POP20\":\"Number\",\"MAX_POP300\":\"Number\",\"MAX_POP310\":\"Number\",\"MAX_POP50\":\"Number\",\"MEAN_BBXC\":\"Number\",\"MEAN_BBYC\":\"Number\",\"MEGACITY\":\"Number\",\"MEGANAME\":\"String\",\"MIN_AREAKM\":\"Number\",\"MIN_AREAMI\":\"Number\",\"MIN_BBXMAX\":\"Number\",\"MIN_BBXMIN\":\"Number\",\"MIN_BBYMAX\":\"Number\",\"MIN_BBYMIN\":\"Number\",\"MIN_PERKM\":\"Number\",\"MIN_PERMI\":\"Number\",\"NAME\":\"String\",\"NAMEALT\":\"String\",\"NAMEASCII\":\"String\",\"NAMEDIFF\":\"Number\",\"NAMEPAR\":\"String\",\"NATSCALE\":\"Number\",\"POP1950\":\"Number\",\"POP1955\":\"Number\",\"POP1960\":\"Number\",\"POP1965\":\"Number\",\"POP1970\":\"Number\",\"POP1975\":\"Number\",\"POP1980\":\"Number\",\"POP1985\":\"Number\",\"POP1990\":\"Number\",\"POP1995\":\"Number\",\"POP2000\":\"Number\",\"POP2005\":\"Number\",\"POP2010\":\"Number\",\"POP2015\":\"Number\",\"POP2020\":\"Number\",\"POP2025\":\"Number\",\"POP2050\":\"Number\",\"POP_MAX\":\"Number\",\"POP_MIN\":\"Number\",\"POP_OTHER\":\"Number\",\"RANK_MAX\":\"Number\",\"RANK_MIN\":\"Number\",\"SCALERANK\":\"Number\",\"SOV0NAME\":\"String\",\"SOV_A3\":\"String\",\"TIMEZONE\":\"String\",\"UN_ADM0\":\"String\",\"UN_FID\":\"Number\",\"UN_LAT\":\"Number\",\"UN_LONG\":\"Number\",\"WORLDCITY\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":91,\"attributes\":[{\"attribute\":\"ADM0CAP\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"ADM0NAME\",\"count\":198,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hong Kong S.A.R.\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kiribati\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Liechtenstein\",\"Lithuania\"]},{\"attribute\":\"ADM0_A3\",\"count\":198,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HKG\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\"]},{\"attribute\":\"ADM1NAME\",\"count\":204,\"type\":\"string\",\"values\":[\"Abu Dhabi\",\"Ad Dawhah\",\"Addis Ababa\",\"Ahal\",\"Al Kuwayt\",\"Al Qahirah\",\"Alger\",\"Amanat Al Asimah\",\"Amman\",\"Ankara\",\"Anseba\",\"Antananarivo\",\"Aqmola\",\"Ar Riyad\",\"Asunción\",\"Attiki\",\"Auckland\",\"Australian Capital Territory\",\"Baghdad\",\"Baki\",\"Bamako\",\"Banaadir\",\"Bangkok Metropolis\",\"Bangui\",\"Banjul\",\"Beijing\",\"Beirut\",\"Benguet\",\"Berlin\",\"Bern\",\"Bhaktapur\",\"Bioko Norte\",\"Bishkek\",\"Bissau\",\"Bogota\",\"Bratislavský\",\"British Columbia\",\"Brunei and Muara\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Bujumbura Mairie\",\"California\",\"Cayo\",\"Centar\",\"Central\",\"Central Equatoria\",\"Centre\",\"Chisinau\",\"Chuquisaca\",\"Ciudad de Buenos Aires\",\"Ciudad de la Habana\",\"Colombo\",\"Colorado\",\"Comunidad de Madrid\",\"Conakry\",\"Dakar\",\"Damascus\",\"Dar-Es-Salaam\",\"Delhi\",\"Dhaka\",\"Dili\",\"District of Columbia\",\"Distrito Capital\",\"Distrito Federal\",\"Distrito Nacional\",\"Djibouti\",\"Dodoma\",\"Dubay\",\"Dublin\",\"Durrës\",\"East Berbice-Corentyne\",\"Erevan\",\"Estuaire\",\"F.C.T.\",\"Federal Capital Territory\",\"Florida\",\"Francisco Morazán\",\"Gauteng\",\"Genève\",\"Georgia\",\"Grad Beograd\",\"Grad Sofiya\",\"Grad Zagreb\",\"Grand Casablanca\",\"Greater Accra\",\"Guadalcanal\",\"Guatemala\",\"Hadjer-Lamis\",\"Harare\",\"Harju\",\"Hhohho\",\"Hovedstaden\",\"Illinois\",\"Istanbul\",\"Jakarta Raya\",\"Jerusalem\",\"Kabul\",\"Kadiogo\",\"Kampala\"]},{\"attribute\":\"ADMIN1_COD\",\"count\":53,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,32,33,34,36,37,38,39,4,40,42,44,45,49,5,50,52,53,57,6,61,65,68,7,78,8,81,82,9],\"min\":0,\"max\":82},{\"attribute\":\"CAPALT\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"CAPIN\",\"count\":20,\"type\":\"string\",\"values\":[\"Administrative\",\"Capital of both\",\"Claimed as capi\",\"Claimed as inte\",\"De facto capita\",\"De facto, admin\",\"Former capital\",\"Judicial capita\",\"Legislative and\",\"Legislative cap\",\"Offical capital\",\"Official (const\",\"Official and ad\",\"Official and le\",\"Official capita\",\"Official, admin\",\"Official, de fa\",\"Official, legis\",\"UN Headquarters\",\"While Jerulsale\"]},{\"attribute\":\"CHANGED\",\"count\":7,\"type\":\"number\",\"values\":[0,1,20,3,4,40,5],\"min\":0,\"max\":40},{\"attribute\":\"CHECKME\",\"count\":2,\"type\":\"number\",\"values\":[0,5],\"min\":0,\"max\":5},{\"attribute\":\"CITYALT\",\"count\":53,\"type\":\"string\",\"values\":[\"Algiers\",\"Asuncion\",\"Athens\",\"Bangkok\",\"Beirut\",\"Belgrade\",\"Bogota\",\"Bombay\",\"Brasilia\",\"Brussels\",\"Bucharest\",\"Cairo\",\"Calcutta\",\"Casablanca\",\"Copenhagen\",\"Damascus\",\"Denver\",\"Dubai\",\"Guatemala\",\"Hanoi\",\"Havana\",\"Khartoum\",\"Kiev\",\"Kuwait\",\"Lisbon\",\"Lome\",\"Los Angeles\",\"Mexico City\",\"Mogadishu\",\"Moscow\",\"Ndjamena\",\"New York\",\"Osaka\",\"Ottawa\",\"Panama\",\"Phnom Penh\",\"Prague\",\"Rangoon\",\"Riyadh\",\"Rome\",\"San Francisco\",\"San Jose\",\"Sanaa\",\"Sao Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Tripoli\",\"Urumqi\",\"Valparaiso\",\"Vienna\",\"Warsaw\",\"Washington D.C.\",\"Yaounde\"]},{\"attribute\":\"COMPARE\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFASCII\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFNOTE\",\"count\":12,\"type\":\"string\",\"values\":[\"Added place.\",\"Changed country.\",\"Changed feature class.\",\"Changed feature class. Changed scale rank.\",\"Changed feature to Admin-0 region capital.\",\"Changed scale rank.\",\"Corrected coordinates.\",\"Location adjusted.\",\"Location adjusted. Changed scale rank.\",\"Name changed.\",\"Name changed. Changed scale rank.\",\"Population from GeoNames. Changed scale rank.\"]},{\"attribute\":\"ELEVATION\",\"count\":19,\"type\":\"number\",\"values\":[0,10,1317,16,171,179,187,2,2320,284,308,320,5,7,70,74,850,89,920],\"min\":0,\"max\":2320},{\"attribute\":\"FEATURECLA\",\"count\":6,\"type\":\"string\",\"values\":[\"Admin-0 capital\",\"Admin-0 capital alt\",\"Admin-0 region capital\",\"Admin-1 capital\",\"Admin-1 region capital\",\"Populated place\"]},{\"attribute\":\"FEATURE_CL\",\"count\":1,\"type\":\"string\",\"values\":[\"P\"]},{\"attribute\":\"FEATURE_CO\",\"count\":4,\"type\":\"string\",\"values\":[\"PPL\",\"PPLA\",\"PPLC\",\"PPLG\"]},{\"attribute\":\"GEONAMEID\",\"count\":242,\"type\":\"number\",\"values\":[-1,1018725,1040652,1070940,108410,112931,1138958,1176615,1185241,1221874,1238992,1252416,1261481,1275004,1275339,1277333,1283240,1298824,146268,1512569,1526273,1528675,1529102,1559804,1581130,160196,160263,1609350,162183,1642911,1645457,1651944,1668341,1690681,1701668,170654,1728930,1730025,1735161,1796236,1815286,1816670,1819729,1820906,1821306,1835848,184745,1850147,1853909,1857910,1871859,1880252,202061,2028462,2075807,2081986,2088122,2108502,2110079,2110394,2113779,2135171,2144168,2147714,2158177,2172517,2193733,2198148,2220957,223817,2240449,2253354,2260535,2267057,2274895,2279755,2293538,2306104,2309527,2314302,2322794,232422,2357048,2365267,2374775,2377450,2389853,2392087,2394819,2399697,2408770,241131,2413876,2422465,2427123,2440485,2460596,2462881,2464470,250441],\"min\":-1,\"max\":6942553},{\"attribute\":\"GEONAMESNO\",\"count\":8,\"type\":\"string\",\"values\":[\"GeoNames match general + researched.\",\"GeoNames match general.\",\"GeoNames match with ascii name + lat + long whole numbers.\",\"GeoNames rough area, rough name, requires further research.\",\"GeoNames rough area, rough name.\",\"GeoNames spatial join with similar names only.\",\"Geonames ascii name + lat.d + long.d matching.\",\"No GeoNames match due to small population, not in GeoNames, or poor NEV placement.\"]},{\"attribute\":\"GN_ASCII\",\"count\":239,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Bengaluru\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Den Haag\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Ejbei Uad el Aabd\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneve\",\"Georgetown\",\"Guatemala City\",\"Ha Noi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\"]},{\"attribute\":\"GN_POP\",\"count\":236,\"type\":\"number\",\"values\":[0,10021295,1019022,1020,1024027,10349312,10356500,10444527,1049498,1086505,1093485,1116513,11174257,11177,1122874,11285654,113364,1137347,113906,1152556,1153615,115826,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1273651,1275857,1284609,12920,1297281,1299369,13076300,13381,1353189,136473,13768,1391433,1399814,1431270,1442271,1453975,1459640,14608512,147074,150000,1508225,1536,1542813,155226,155963,1573544,15938,1619438,162135,1655753,16571,1662,1691468,1696128,1702139,1724,1742124,1767200,180541,1815679,1837969,183981,1877155,188084,1916100,194530,1963264,196731,1974647,1977663,1978028,200452,2026469,20500,208411,2087,2138,2163824,217,217000,2207718,223757,22400,224838,227940,22881,229398,234168,235017,24226],\"min\":0,\"max\":14608512},{\"attribute\":\"GTOPO30\",\"count\":166,\"type\":\"number\",\"values\":[-2,-9999,0,1,10,100,1002,1006,1025,103,104,108,1092,11,110,111,1129,1149,115,1156,12,1206,1247,125,1277,128,1282,1289,1299,13,1304,131,132,133,1398,14,1448,1468,1481,1482,15,151,152,1533,156,1561,1568,159,16,164,169,17,1722,1724,173,174,1775,1808,181,183,19,199,2,20,2004,203,205,21,219,22,2216,224,228,23,235,2360,2363,24,2400,246,259,26,2620,2737,2759,2764,28,284,290,3,30,304,305,306,307,31,339,35,350,373],\"min\":-9999,\"max\":3829},{\"attribute\":\"ISO_A2\",\"count\":196,\"type\":\"string\",\"values\":[\"-99\",\"AD\",\"AE\",\"AF\",\"AG\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BB\",\"BD\",\"BE\",\"BF\",\"BG\",\"BH\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CV\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DM\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FM\",\"FR\",\"GA\",\"GB\",\"GD\",\"GE\",\"GH\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HK\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KI\",\"KM\",\"KN\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\"]},{\"attribute\":\"LABELRANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,5,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"LATITUDE\",\"count\":242,\"type\":\"number\",\"values\":[-0.214988,-1.283347,-1.95359,-11.704158,-12.048013,-13.841545,-13.983295,-15.416644,-15.78334,-16.497974,-17.73335,-17.81779,-18.133016,-18.916637,-19.040971,-20.166639,-21.138512,-22.570006,-22.925023,-23.55868,-24.646313,-25.296403,-25.706921,-25.955277,-26.170044999999999,-26.316651,-26.466667,-29.119994,-29.316674,-3.376087,-33.047764,-33.450014,-33.920011,-34.602502,-34.858042,-35.283029,-36.850013,-37.820031,-4.259186,-4.329724,-4.616632,-41.299974,-6.174418,-6.183306,-6.800013,-8.516652,-8.559388,-8.838286,-9.437994,-9.464708,0.316659,0.333402,0.385389,1.293033,1.338188,10.500999,10.651997,11.55003,11.595014,11.865024,12.052633,12.113097,12.153017,12.370316,12.650015,12.969995,13.102003,13.148279,13.453876,13.516706,13.710002,13.749999,14.001973,14.102045,14.604159,14.621135,14.715832,14.916698,15.301016,15.333339,15.354733,15.588078,16.429991,16.783354,17.118037,17.252034,17.30203,17.966693,17.977077,18.086427,18.470073,18.541025,19.01699,19.442442,19.766557,2.066681,2.91402,21.033327,22.304981,22.494969],\"min\":-41.299974,\"max\":64.150024},{\"attribute\":\"LONGITUDE\",\"count\":243,\"type\":\"number\",\"values\":[-0.116722,-0.216716,-1.524724,-10.804752,-100.329985,-104.984016,-118.179981,-122.459978,-123.121644,-13.200006,-13.234216,-13.680235,-15.598361,-15.97534,-16.591701,-17.47313,-171.738642,-175.220564,-21.950014,-23.516689,-3.683352,-4.040048,-43.225021,-46.62502,-47.916052,-5.275503,-55.167031,-56.171052,-57.641505,-58.167029,-58.397531,-59.616527,-6.248906,-6.836131,-61.000008,-61.212062,-61.387013,-61.517031,-61.741643,-61.850034,-62.717009,-65.259516,-66.917037,-68.149985,-69.900085,-7.616367,-70.667041,-71.621014,-72.336035,-73.980017,-74.083344,-75.700015,-76.767434,-77.009419,-77.050062,-77.350044,-78.500051,-79.420021,-79.533037,-8.000039,-80.224106,-82.364182,-84.084051,-84.399949,-86.268492,-87.217529,-87.750055,-88.767073,-89.203041,-9.144866,-9.652522,-90.526966,-95.339979,-99.130988,1.222757,1.516486,10.179678,10.749979,100.516645,101.699983,101.701947,102.59998,103.855821,104.070019,104.916634,105.850014,106.829438,106.916616,11.516651,114.185009,114.933284,116.388286,12.447808,12.46667,12.483258,12.563486,120.569943,120.982217,121.436505,121.568333],\"min\":-175.220564,\"max\":179.216647},{\"attribute\":\"LS_MATCH\",\"count\":3,\"type\":\"number\",\"values\":[0,1,2],\"min\":0,\"max\":2},{\"attribute\":\"LS_NAME\",\"count\":242,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens2\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubayy\",\"Dublin2\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown1\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\"]},{\"attribute\":\"MAX_AREAKM\",\"count\":212,\"type\":\"number\",\"values\":[0,1,10,1021,103,104,105,106,10661,108,109,112,113,114,1182,118844,12,120,122,126,1275,128,130,131,1327,1332,1345,135,1373,14049,1409,141,143,145,1471,1472,1479,148,15,152,1554,157,16,160,1614,1639,16400,17,1700,1708,171,172,174,1748,177,178,179,18,181,183,184,186559,191,19435,195,197,2080,209,21,211,217,2286,23,2344,2350,236,237,2415,24244,243,244,2447,245,246,249,25,251,2667,27,270,2718,28,2836,2843,2861,2907,3,30,300,302],\"min\":0,\"max\":186559},{\"attribute\":\"MAX_AREAMI\",\"count\":181,\"type\":\"number\",\"values\":[0,1,10,1030,104,1049,1095,1098,11,1105,1122,116,117,1174,12,121,122,123,1235,126,13,130,133,1331,134,135,138,139,14,140,141,143,144,146,15,154,157,1578,16,160,162,165,166,168,169,17,173,174,176,179,180,182,183,1855,188,1892,191,19271,194,195,196,198,2,20,202,20591,206,209,21,210,2109,2148,215,2220,223,224,2241,227,229,23,2408,243,245,248,251,264,266,268,27,270,272,273,274,277,28,29,3,30,305,310],\"min\":0,\"max\":72030},{\"attribute\":\"MAX_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-1.433333,-10.658333,-100.125,-104.708333,-117.008333,-121.733333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.125,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.15,-46.108333,-47.783333,-5.216667,-55.1,-55.8,-57.316667,-57.816667,-58.116667,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.325,-72.033333,-72.716667,-74.008333,-75.45,-76.4,-76.733333,-76.833333,-77.258333,-78.291667,-78.608333,-79.4,-8.958333,-80.025,-82.208333,-83.858333,-83.975,-86.158333,-87.125,-87.141667,-88.75,-88.966667,-90.425,-95,-98.808333,0,0.033333,0.816667,1.483333,1.591667,10.575,101.016667,101.891667,102.816667,104,105,105.375,106.808333,107.041667,109.808333,11.091667,11.6,114.775,114.991667,117.325,12.481009,12.541667,12.658333,12.766667,120.65,121.333333,121.816667,121.9,125.608333],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MAX_BBXMIN\",\"count\":241,\"type\":\"number\",\"values\":[-0.35,-0.546866,-1.616667,-10.816667,-100.5,-105.241667,-118.966667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.499182,-47.056372,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-58.757731,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-66.993057,-68.258333,-7.116667,-7.7,-70.208333,-70.8,-71.658333,-72.441667,-74.091431,-74.266667,-75.983333,-76.866667,-77.153161,-77.308333,-77.4,-78.591667,-79.576315,-79.806554,-8.058333,-80.441667,-82.533333,-84.166667,-84.608333,-86.383333,-87.266667,-88.03629,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,10.440355,100.216667,101.491667,101.575,102.491667,103.383333,103.658333,104.441667,105.616287,106.473854,106.725,11.433333,113.983333,114.825,116.058333,12.316667,12.333333,12.391667,12.450494,12.983333,120.541667,120.925,121.013757,121.325],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MAX_BBYMAX\",\"count\":239,\"type\":\"number\",\"values\":[-1.075,-1.083333,-11.475,-11.808333,-13.641667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.544862,-20.108333,-21.125,-22.491667,-22.575,-23.241667,-24.6,-25.1,-25.641667,-25.75,-25.941667,-26.283333,-26.391667,-29.058333,-29.241667,-32.916667,-33.175,-33.6,-33.808333,-34.366667,-34.65,-35.183333,-36.8,-37.566667,-4.15,-4.291667,-4.6,-41.2,-5.875,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.475,10.05,10.541667,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.9,14.025,14.133333,14.158333,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.825,16.416667,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.491667,19.783333,19.908333,2.116667,21.783333,23.183333,23.641667],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MAX_BBYMIN\",\"count\":240,\"type\":\"number\",\"values\":[-0.30257,-1.433333,-11.758333,-12.281801,-13.866667,-14.408333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.075,-20.248073,-21.166667,-22.625,-23.033333,-23.842331,-24.7,-25.391667,-25.891667,-25.983333,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.675,-33.075,-33.556142,-34.091667,-34.108333,-34.933333,-35.008333,-35.455764,-36.964958,-38.0105,-4.333333,-4.478678,-4.65,-41.35,-6.208333,-6.383127,-6.933333,-8.583333,-8.933333,-9.441667,-9.508333,0,0.166719,0.283333,0.3,1.25,1.325,10.408333,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.516667,13.591667,13.975,14.033333,14.441667,14.571814,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.875,17.958333,18.033333,18.316667,18.491667,18.891667,19.233333,19.633333,2,2.708333,20.620237,22.056849,22.2],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MAX_NATSCA\",\"count\":5,\"type\":\"number\",\"values\":[0,100,20,300,50],\"min\":0,\"max\":300},{\"attribute\":\"MAX_PERKM\",\"count\":198,\"type\":\"number\",\"values\":[0,101,102,1021,10224,10267,105,106,1064,107,1086,1087,109,1100,1111,112,1135,116,1161,119,11900,1192,120,1202,121,122,123,12342,13,130296,131,132,1325,133,1354,142,144,149,15,151,153,154,155,16,160,162,164,1658,166,173,174,177,1773,179,18,184,186,1891,1898,190,1901,19314,196,199,202,205,208,210,215,218,219,22,2202,223,2284,234,2388,239,2412,2440,245,2459,249,25,250,256,26,261,266,27,270,278,28,283,286,287,288,2946,296,2982],\"min\":0,\"max\":130296},{\"attribute\":\"MAX_PERMI\",\"count\":189,\"type\":\"number\",\"values\":[0,10,101,102,103,1030,108,11,110,1101,111,114,115,116,1175,1179,118,1181,12001,122,123,126,127,129,130,134,135,136,1369,138,14,1419,145,1484,149,1499,1516,152,1528,155,159,16,162,165,166,168,17,172,173,176,177,179,18,1830,184,1853,187,189,19,192,194,197,198,2,20,206,21,212,213,214,215,22054,222,223,224,227,23,238,239,24,240,243,25,251,255,2581,263,27,274,28,284,285,286,292,295,309,31,3102,311,3113],\"min\":0,\"max\":80962},{\"attribute\":\"MAX_POP10\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10169723,10190861,1042928,1046787,1060587,107260,1072902,1073782,1074311,10811002,108543,1086244,10929146,11029015,1105973,1115771,111975,1122682,1123733,1124323,112927,1154222,1163890,1173386,1193251,1200842,12322855,12495084,12814908,128698,1289566,1291613,1316564,1337078,1369629,13762740,1381747,143230,144164,144390,1444949,1450902,14548962,145850,1472051,14936123,1504217,15220,1548599,1551977,1561335,1577138,1581087,1590116,1590482,159243,160966,16172884,166212,1662508,1712125,1727538,1732952,1742194,1759840,176365,1788020,1831176,1832316,1833439,1835853,1838722,1904377,191152,1946052,194824,1951272,1990917,2010175,2037124,206499,2066046,2084,2129163,2143900,2150614,2155592,218269,2182723,21887,2189383,219674,221736,224300,22534,2324568,23336],\"min\":0,\"max\":16172884},{\"attribute\":\"MAX_POP20\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10259448,1060587,107260,1072902,1073782,1074311,1076471,108543,1086244,10991915,11030955,1105973,11120470,1115771,111975,112927,1130999,11359674,1163890,1173386,11947707,1200842,1230007,128698,1289566,1291613,13143622,1316564,1337078,13414375,1381747,143230,144164,1443206,1444949,145850,1504217,15074060,15091561,15220,1551977,1577138,15779579,1581475,1588839,1590482,159243,160966,1610331,16172884,166212,1662508,1712468,17250245,1727538,1742194,17425624,176365,1788020,1823845,1826034,1829910,1831176,1831921,1833439,1835853,1836390,18577087,1874437,1892286,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2100407,2129163,21394172,2140496,2142805,2143900,2150614,2153391,218269,21887,219674,221736,2240256,224300,2244726,22534,2263899,2297630],\"min\":0,\"max\":24218878},{\"attribute\":\"MAX_POP300\",\"count\":219,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,1073782,1074311,1086244,1105973,1108173,1113489,1115771,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,1337078,1381747,143230,144164,1444949,145850,14870543,1504217,15220,1551977,15645640,1577138,1581475,1590116,1590482,159243,160966,1610331,166212,1662508,16718429,1727538,1740692,1742194,1788020,18203351,1823845,1826034,1831921,1835853,1838722,1838972,1839463,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,2066046,2084,2129163,2141255,2142805,2150614,2174327,21887,219674,21991959,22031364,221736,224300,2244726,22534,2297630,2322955,23336,23366503,23647944,23700631,2419489,2443605,2445384,244896,2498797,251136,254169,2564188,262796,264350,265361,2660614,26631586],\"min\":0,\"max\":87652060},{\"attribute\":\"MAX_POP310\",\"count\":45,\"type\":\"number\",\"values\":[0,10011551,10140950,1108173,11547877,1256924,12611862,1337078,137121250,14903021,15645640,1610331,18203351,18924578,18948089,20149761,21991959,2244726,224908923,2666328,26749011,30696820,31303497,3164008,3503466,3576473,3767139,3910939,40576904,4207001,42594594,44354170,4561697,4983714,5187749,5190755,5451385,5678280,6333154,8450289,8889292,9206246,9212245,968976,9960588],\"min\":0,\"max\":224908923},{\"attribute\":\"MAX_POP50\",\"count\":238,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,107260,1073782,1074311,1076471,108543,1086244,1105973,1108173,1115771,111975,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,13292739,1337078,1371285,1381747,143230,144164,1444949,145850,14868745,1504217,15220,1551977,1577138,1581475,1590116,1590482,159243,160966,1610331,16406759,16510327,1651113,166212,1662508,16718429,1727538,1740692,1742194,176365,1788020,18203351,1822603,1826034,1831921,1833439,1835853,1838722,1838972,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2129163,21387676,2141255,2142805,2150614,2174327,218269,21887,219674,22017580,221736,224300,2244726,22534,2297630,2312867,2322955,2324568,23336,2395309,2419489,24374217,2443605],\"min\":0,\"max\":53845691},{\"attribute\":\"MEAN_BBXC\",\"count\":242,\"type\":\"number\",\"values\":[-0.169651,-0.188893,-1.521746,-10.734923,-100.290632,-104.993967,-118.107478,-122.301354,-122.982768,-13.194643,-13.230082,-13.588647,-15.612698,-15.960139,-16.58125,-17.343779,-171.781117,-175.206798,-21.8825,-23.514907,-3.749399,-4.019846,-43.407551,-46.651489,-47.9714,-5.263708,-55.188737,-56.12273,-57.535385,-58.153788,-58.50845,-59.589731,-6.278983,-6.87491,-60.988377,-61.202183,-61.3775,-61.383365,-61.745833,-61.824059,-62.726389,-65.260317,-66.917919,-68.157765,-69.980546,-7.518511,-7.987419,-70.66127,-71.541251,-72.222424,-73.815782,-74.116517,-75.717666,-76.798044,-77.002668,-77.010199,-77.335571,-78.460061,-79.464213,-79.494919,-80.236416,-82.354344,-84.111698,-84.328739,-86.263402,-87.19911,-87.85874,-88.767803,-89.176042,-9.232769,-90.54419,-95.431928,-99.116655,0,1.190359,1.535473,10.202041,10.756508,100.545047,101.644598,101.716617,102.648054,103.821508,104.039242,104.78577,105.892881,106.883013,106.989399,11.518344,114.035195,114.908824,115.929521,12.419907,12.437175,12.462153,12.561474,120.598765,120.915044,121.053901,121.292375],\"min\":-175.206798,\"max\":178.472885},{\"attribute\":\"MEAN_BBYC\",\"count\":242,\"type\":\"number\",\"values\":[-0.198438,-1.249679,-11.639931,-12.041474,-13.837855,-14.028166,-15.403941,-15.824583,-16.506439,-17.728125,-17.832399,-18.106731,-18.875473,-19.030556,-2.034427,-20.221833,-21.142325,-22.551143,-22.856463,-23.558961,-24.656793,-25.307462,-25.755716,-25.880831,-26.187259,-26.315428,-26.430254,-29.128155,-29.350222,-3.227847,-33.034648,-33.461735,-33.846724,-33.954979,-34.681331,-34.828337,-35.309627,-36.896818,-37.835257,-4.251293,-4.384467,-4.626389,-41.285539,-6.162244,-6.313824,-6.833434,-8.559115,-8.851964,-9.42996,-9.433491,0,0.323809,0.338176,0.395238,1.33869,1.352586,10.451672,10.638816,11.488418,11.5715,11.871032,12.046528,12.120479,12.13336,12.365975,12.626173,12.841733,13.128773,13.145833,13.455208,13.522591,13.738798,13.761017,14.005921,14.083298,14.603015,14.742828,14.823118,14.938056,15.298056,15.327408,15.376031,15.559101,16.421065,16.85864,17.120565,17.248864,17.306019,17.967124,18.018509,18.092569,18.467176,18.56946,19.189154,19.473748,19.720606,2.054239,2.915909,20.873406,22.616509],\"min\":-41.285539,\"max\":64.116125},{\"attribute\":\"MEGACITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"MEGANAME\",\"count\":145,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Al Kuwayt (Kuwait City)\",\"Al-Khartum\",\"Al-Qahirah\",\"Amman\",\"Amsterdam\",\"Ankara\",\"Antananarivo\",\"Ar-Riyadh\",\"Asunción\",\"Athínai\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baku\",\"Bamako\",\"Bangalore\",\"Bayrut\",\"Beijing\",\"Beograd\",\"Berlin\",\"Bishkek\",\"Bogotá\",\"Brasília\",\"Brazzaville\",\"Bruxelles-Brussel\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Cape Town\",\"Caracas\",\"Chengdu\",\"Chicago\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de México\",\"Ciudad de Panamá (Panama City)\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Dar es Salaam\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dhaka\",\"Dimashq\",\"Dubayy\",\"Dublin\",\"El Djazaïr\",\"Freetown\",\"Harare\",\"Helsinki\",\"Hong Kong\",\"Houston\",\"Hà Noi\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Johannesburg\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Kigali\",\"Kinshasa\",\"Kolkata\",\"Krung Thep\",\"Kuala Lumpur\",\"Kyiv\",\"Kyoto\",\"København\",\"La Habana\",\"La Paz\",\"Lagos\",\"Lima\",\"Lisboa\",\"Lomé\",\"London\",\"Los Angeles-Long Beach-Santa Ana\",\"Luanda\",\"Lusaka\",\"Madrid\",\"Managua\",\"Manila\",\"Maputo\",\"Melbourne\",\"Miami\",\"Minsk\",\"Monrovia\",\"Monterrey\",\"Montevideo\",\"Moskva\",\"Mumbai\",\"Muqdisho\",\"N'Djaména\",\"Nairobi\",\"Nay Pyi Taw\",\"New York-Newark\",\"Niamey\",\"Osaka-Kobe\"]},{\"attribute\":\"MIN_AREAKM\",\"count\":200,\"type\":\"number\",\"values\":[0,1,10,1010,1035,104,105,1054,106,1078,108,109,1093,1100,1114,112,1121,1124,113,1137,114,12,120,122,1249,126,1265,128,130,1303,131,1338,1345,141,143,1432,1434,145,1479,148,15,1561,16,160,166,1675,169,17,171,172,174,177,178,179,18,181,183,184,187,191,1914,192,195,197,202,209,21,211,2130,217,218,224,226,23,233,236,237,2388,244,2443,245,246,2490,25,2512,257,264,27,270,275,2761,278,28,3,30,305,310,316,317,32],\"min\":0,\"max\":5912},{\"attribute\":\"MIN_AREAMI\",\"count\":166,\"type\":\"number\",\"values\":[0,1,10,102,104,106,1066,107,11,118,12,120,122,125,127,129,13,131,133,134,135,1362,139,14,144,146,1464,147,15,156,158,16,160,165,166,168,169,17,171,172,174,178,179,183,185,188,189,191,194,195,196,198,2,20,202,205,206,207,21,215,220,227,2283,229,23,232,247,257,26,266,268,269,27,270,273,279,28,29,298,3,30,310,313,315,32,330,334,34,342,345,347,35,351,37,375,38,390,4,40,400],\"min\":0,\"max\":2283},{\"attribute\":\"MIN_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-0.098725,-1.433333,-10.658333,-100.125,-104.866667,-117.857183,-122.358333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.2,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.158333,-46.383333,-47.783333,-5.216667,-55.107566,-55.8,-57.543999,-58.116667,-58.175,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.57441,-72.033333,-73.574946,-74.008333,-75.45,-76.733333,-76.752653,-76.85,-77.258333,-78.291667,-79.130272,-79.4,-8.958333,-80.175719,-82.208333,-83.879976,-83.983333,-86.158333,-87.141667,-87.528138,-88.75,-88.966667,-90.425,-95.133333,-99.018165,0,0.307108,1.483333,1.591667,10.497585,100.844293,101.841667,101.891667,102.725,104,104.433333,105,106.2294,106.932506,107.041667,11.091667,11.6,114.3,114.991667,117.208333,12.481009,12.541667,12.658333,12.766667,120.65,121.038985,121.622484,121.9],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MIN_BBXMIN\",\"count\":238,\"type\":\"number\",\"values\":[-0.35,-1.091667,-1.616667,-10.816667,-100.5,-105.241667,-118.991667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.75,-47.058333,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-59.016667,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-67.133333,-68.258333,-7.116667,-7.7,-70.208333,-70.958333,-71.658333,-72.441667,-74.266667,-74.75,-75.983333,-76.866667,-77.166667,-77.4,-77.533333,-78.591667,-79.591667,-8.058333,-80.008333,-80.466667,-82.533333,-84.366667,-84.875,-86.383333,-87.266667,-88.408333,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,1.658333,10.333333,101.358333,102.491667,103.125,103.633333,104.441667,104.975,105.891667,106.725,11.433333,111.441667,112.533333,114.825,119.016667,12.116667,12.333333,12.391667,12.958333,12.983333,120.141667,120.541667,120.741667,125.516667],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MIN_BBYMAX\",\"count\":241,\"type\":\"number\",\"values\":[-1.083333,-1.76663,-11.475,-11.808333,-13.691667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.95,-20.108333,-21.125,-22.491667,-22.837896,-23.358333,-24.6,-25.208333,-25.641667,-25.75,-25.991667,-26.283333,-26.391667,-29.058333,-29.241667,-33.016667,-33.175,-33.641667,-33.808333,-34.375,-34.65,-35.183333,-36.825,-37.589905,-4.15,-4.291667,-4.6,-41.2,-6.016667,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.425,10.041667,10.533671,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.872295,13.9,14.025,14.133333,14.702876,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.699422,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.308333,19.640315,19.783333,2.116667,21.319209,22.4,22.575491],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MIN_BBYMIN\",\"count\":237,\"type\":\"number\",\"values\":[-0.391667,-1.433333,-11.758333,-12.316667,-13.866667,-14.433333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.991667,-20.333333,-21.166667,-22.625,-23.033333,-23.891667,-24.7,-25.491667,-25.891667,-25.991667,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.841667,-33.075,-33.7,-34.091667,-34.108333,-34.933333,-35.008333,-35.483333,-37.091667,-38.208333,-4.333333,-4.5,-4.65,-41.35,-6.208333,-6.933333,-7.716667,-8.583333,-8.933333,-9.441667,-9.508333,0,0.033333,0.283333,0.3,1.25,1.325,10.325,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.5,13.591667,13.975,14.016667,14.033333,14.433333,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.8,17.958333,18.033333,18.316667,18.491667,18.891667,19.2,19.283333,19.633333,19.866667,2,2.7,21.925],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MIN_PERKM\",\"count\":192,\"type\":\"number\",\"values\":[0,101,102,105,106,109,112,1148,116,1175,1180,119,120,121,122,123,1257,126,128,13,130,131,132,133,136,1360,1365,137,142,1439,144,149,1494,15,153,155,156,158,16,160,162,164,166,170,173,174,175,177,18,1837,184,186,190,1908,196,199,201,203,205,208,215,217,219,22,2219,222,223,228,2296,233,237,239,240,244,245,249,25,250,251,256,258,26,261,266,27,274,28,280,287,288,293,295,30,304,309,31,310,311,315,318],\"min\":0,\"max\":2296},{\"attribute\":\"MIN_PERMI\",\"count\":181,\"type\":\"number\",\"values\":[0,10,100,101,102,103,106,108,109,11,110,114,1141,115,116,118,1186,122,123,124,125,126,127,129,130,134,135,136,1379,138,14,142,1427,145,147,149,152,155,156,159,16,160,162,165,17,170,174,179,18,182,183,189,19,192,193,196,197,198,2,20,21,211,215,216,217,219,221,222,224,227,23,231,234,238,24,240,243,247,248,25,251,254,255,27,274,276,28,285,286,289,29,290,291,293,295,300,302,309,31,317],\"min\":0,\"max\":1427},{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEALT\",\"count\":43,\"type\":\"string\",\"values\":[\"Al Kuwayt|Kuwait City\",\"Al-Khartum\",\"Al-Qahirah\",\"Ar-Riyadh\",\"Asunción\",\"Athinai\",\"Bayrut\",\"Bengaluru\",\"Bogotá\",\"Brasília\",\"Bruxelles-Brussel\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de México\",\"Ciudad de Panamá|Panama City|Panama\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dimashq\",\"El Djazaïr\",\"Hà Noi\",\"Krung Thep\",\"Kyiv\",\"La Habana\",\"Lomé\",\"Los Angeles-Long Beach-Santa Ana\",\"Muqdisho\",\"N'Djaména\",\"Nay Pyi Taw\",\"New York-Newark\",\"Osaka-Kobe\",\"Ottawa-Gatineau\",\"P'yongyang\",\"Phnum Pénh\",\"San Francisco-Oakland\",\"San José\",\"Sana'a'\",\"Sao Paulo|São Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Valparaíso\",\"Washington D.C.\",\"Yangon\",\"Yaoundé\",\"Ürümqi|Wulumqi\"]},{\"attribute\":\"NAMEASCII\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEDIFF\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"NAMEPAR\",\"count\":12,\"type\":\"string\",\"values\":[\"Athínai\",\"Beograd\",\"Bombay\",\"Bucuresti\",\"Calcutta\",\"Copenhagen\",\"Dubayy\",\"Lisboa\",\"Moskva\",\"Praha\",\"Warszawa\",\"Wien\"]},{\"attribute\":\"NATSCALE\",\"count\":8,\"type\":\"number\",\"values\":[10,110,20,200,30,300,50,600],\"min\":10,\"max\":600},{\"attribute\":\"POP1950\",\"count\":135,\"type\":\"number\",\"values\":[0,1002,1016,1021,104,1041,106,1066,1068,110,111,1116,11275,1212,1216,12338,129,1298,1302,1304,1322,133,1332,1347,1360,137,138,1415,143,145,1452,148,15,150,1544,1618,1682,1690,1700,171,177,18,183,1855,1884,194,20,202,206,208,2086,211,219,22,2334,24,2494,253,258,275,280,281,282,284,2857,287,2883,2950,305,31,319,32,322,328,33,3352,336,341,356,36,364,366,367,392,4046,411,4147,418,4331,4513,46,468,4999,505,5098,513,516,522,5356,556],\"min\":0,\"max\":12338},{\"attribute\":\"POP1955\",\"count\":139,\"type\":\"number\",\"values\":[0,1016,104,106,1091,110,111,112,1227,1248,1249,125,1289,129,1306,131,13219,136,1365,1368,13713,1396,140,1405,1440,1449,148,1539,1553,1563,1574,1618,1712,1714,174,182,184,186,1872,189,1906,192,1972,201,2018,2021,2087,21,2121,2143,220,235,246,25,252,257,265,27,28,281,292,3029,3044,312,314,3299,34,340,342,3432,3592,37,370,374,376,377,3801,387,40,405,409,41,414,425,431,439,451,46,461,4628,468,49,498,501,5055,5120,5154,53,533,556],\"min\":0,\"max\":13713},{\"attribute\":\"POP1960\",\"count\":141,\"type\":\"number\",\"values\":[0,1001,1002,1005,1019,1106,1119,112,1147,1151,1163,1165,1166,119,124,1269,128,1284,1285,130,1316,1361,137,14164,1436,1453,1485,1514,156,1592,162,1634,16679,174,1744,1756,179,181,1811,1814,1823,1851,1873,192,1980,199,2089,2135,2151,218,219,2200,2274,23,230,233,236,2361,2392,2456,247,248,252,2620,263,2679,283,293,311,319,3260,34,344,347,359,3680,382,384,389,393,3970,40,4060,415,419,433,4374,438,440,443,446,448,45,476,4945,5012,508,519,538,551],\"min\":0,\"max\":16679},{\"attribute\":\"POP1965\",\"count\":143,\"type\":\"number\",\"values\":[0,1003,1038,1049,109,111,112,1132,1135,1154,1165,1206,121,1212,1229,1230,1288,132,1323,1327,1373,1377,138,1389,1396,146,148,15177,1525,158,1598,160,1614,1657,169,1709,172,1760,1780,1878,1880,2001,20284,2068,208,2080,2093,2121,2135,222,227,2284,2294,233,235,2361,2390,248,2511,2584,259,268,269,2780,2829,287,2898,29,298,299,303,310,315,319,3191,322,3232,3297,337,339,3452,360,369,394,399,404,436,45,461,472,473,4738,477,478,481,482,4854,488,499,51],\"min\":0,\"max\":20284},{\"attribute\":\"POP1970\",\"count\":138,\"type\":\"number\",\"values\":[0,1029,1035,1045,1054,1070,1076,111,1114,1182,1254,1267,1274,129,1298,1300,1307,1341,1362,1374,1380,1396,1403,1414,1444,147,1505,155,1568,1592,1615,16191,163,164,1655,1693,1741,1779,1817,183,192,1946,206,2060,2070,2075,2141,222,223,23298,2334,238,2383,2485,2488,2529,2535,2647,2667,272,2772,278,298,2980,3110,3135,3206,3290,340,3458,3521,3534,357,359,363,366,371,388,3915,398,408,417,433,451,455,459,460,472,48,494,500,501,507,525,531,5312,532,548,552,553],\"min\":0,\"max\":23298},{\"attribute\":\"POP1975\",\"count\":142,\"type\":\"number\",\"values\":[0,100,1015,1016,10690,107,1120,1122,1126,1150,1172,1198,1206,1339,1348,1386,1403,141,1429,1444,1482,149,1499,1500,1547,15880,1589,1610,1612,1622,167,1702,1709,1793,180,1848,1884,1890,1911,1926,198,2005,2023,2030,2059,2103,2111,2151,2221,226,2263,231,2342,240,2561,257,2590,2620,2626,26615,2738,2770,284,292,2960,3040,3130,3138,329,3300,356,3600,363,3696,3842,385,3890,3943,398,4273,440,443,445,454,456,4813,485,4999,500,528,530,532,572,575,581,582,596,6034,611,624],\"min\":0,\"max\":26615},{\"attribute\":\"POP1980\",\"count\":143,\"type\":\"number\",\"values\":[0,1042,1055,1057,1074,1090,1096,1164,1175,1179,12089,1240,1247,125,128,1293,13010,1318,1356,1376,1384,1416,1454,15601,1565,1574,1609,1621,1623,1625,1654,1656,1701,1818,1842,1865,189,1891,1913,1992,2049,2053,2057,2109,2201,2217,225,2293,2378,238,2415,2424,2449,254,257,2572,2575,2606,2656,274,2765,2777,2812,28549,2987,3008,3056,3122,3145,3227,324,325,3266,337,3390,344,3525,361,371,3721,415,423,4253,4397,4438,446,4609,469,4723,489,5079,525,526,533,538,550,551,580,5955,5984],\"min\":0,\"max\":28549},{\"attribute\":\"POP1985\",\"count\":144,\"type\":\"number\",\"values\":[0,1012,1013,1016,10181,1029,10341,10350,1046,1056,1090,1121,1122,1123,1160,1162,1177,1181,1197,1295,13395,1359,1396,14109,1437,1474,1476,1508,1546,1559,1566,15827,1585,1596,1611,1654,1660,1672,168,1681,1714,1716,1773,1879,1925,1950,1958,2005,2036,204,2069,2195,2213,2273,2406,2410,2446,2518,260,2629,2639,2658,2693,2709,2793,2805,2854,2935,297,30304,3047,3060,3063,3355,3395,3429,3432,344,345,3500,3521,3607,393,402,4087,412,4201,424,427,4355,460,466,4660,471,492,5070,5116,514,5279,5407],\"min\":0,\"max\":30304},{\"attribute\":\"POP1990\",\"count\":144,\"type\":\"number\",\"values\":[0,1035,1038,1042,1047,10513,10544,1062,1088,10883,10890,1091,11035,1120,1134,1161,1162,1174,1175,1191,1197,1212,1224,12308,1293,1306,1316,1380,1392,1405,14776,1500,1522,1528,15312,1546,1559,1568,1607,16086,1628,1680,1691,1733,1760,1791,1863,1898,1908,2005,2026,2040,2096,2100,2102,2108,2155,2184,219,2325,2360,2526,2537,2561,2574,2594,2682,2711,2767,2907,2922,2955,2961,3016,3070,3117,3126,32530,330,3376,3422,343,3448,3450,3632,3807,3969,398,4036,4092,432,4414,4616,473,4740,4764,477,504,529,537],\"min\":0,\"max\":32530},{\"attribute\":\"POP1995\",\"count\":144,\"type\":\"number\",\"values\":[0,10174,10256,1034,10423,1045,1048,11052,1107,11154,11339,1138,1142,1147,1149,1160,1168,1169,1190,11924,1194,1213,1217,1255,1267,1268,1287,1379,14111,1415,1417,1427,1584,15948,1616,1649,1652,1668,1670,1678,16811,1688,16943,1715,1747,1755,1766,1789,1804,1849,1893,1953,2018,2116,2127,2157,2183,2257,2265,2295,2394,2442,2535,2590,2600,2676,2781,2816,2838,2842,289,2951,2961,3035,3095,3122,3213,3242,3257,3353,33587,3403,3424,3425,3471,3478,3651,3839,4197,4431,4447,452,4598,464,4701,4744,4964,509,526,542],\"min\":0,\"max\":33587},{\"attribute\":\"POP2000\",\"count\":141,\"type\":\"number\",\"values\":[0,10016,1005,1007,1019,1023,10285,1032,10534,1063,1072,1073,1077,1079,10803,1084,1096,1097,1100,1110,1111,11165,1127,1128,1160,1172,11814,11847,1192,1201,1206,1219,1233,13058,1306,13243,1357,1361,1365,1379,1390,1487,1499,1507,1561,16086,1653,1666,1674,1700,17099,1730,1733,17846,1787,18022,1806,1854,1877,1949,1959,1963,1998,2029,2044,2116,2135,2158,2187,2233,2493,2591,2606,2640,2672,2715,2732,2746,2752,2754,2864,3032,3043,3117,3179,3236,3266,3384,3385,3433,34450,3542,3553,3567,3752,3849,3919,3949,4017,4078],\"min\":0,\"max\":34450},{\"attribute\":\"POP2005\",\"count\":143,\"type\":\"number\",\"values\":[0,1023,1037,10416,1042,1044,10717,10761,1085,1093,1094,1103,1106,1119,11258,1140,11469,11487,1164,1166,1189,1216,1217,12307,1248,12553,12576,1261,1272,1273,1315,1318,1334,1363,1368,1374,1405,1409,1415,14282,14503,1489,1515,1525,1527,1590,1593,1647,1693,1742,1762,1775,1777,1801,1805,18202,18333,1867,18732,18735,1885,1888,1936,1984,2025,2062,2093,2098,2158,2189,2241,2264,2330,2434,2606,2672,2679,2762,2787,2902,2930,2994,3012,3087,3138,3199,3230,3258,3265,3341,3348,3387,3391,35327,3533,3564,3572,3579,3641,3928],\"min\":0,\"max\":35327},{\"attribute\":\"POP2010\",\"count\":143,\"type\":\"number\",\"values\":[0,10061,1024,1031,1041,10452,1059,1060,1085,1099,1100,1102,11100,11106,1115,11294,1145,1149,1162,11748,1185,11893,1245,12500,1264,12795,1281,1284,1328,1338,13485,1355,1379,1420,1433,1446,1448,1452,1466,14787,1494,14987,1513,1572,1576,1590,1611,1679,1697,1701,1705,1707,1743,1805,1846,1870,18845,1892,18978,19028,19040,1942,1998,2008,2063,2121,2146,2151,2154,2174,2184,2189,2313,2315,2466,2603,2604,2709,2812,2930,2985,3010,3100,3112,3181,3215,3242,3277,3300,3339,3354,3406,3435,3450,35676,3599,3712,3716,3728,3802],\"min\":0,\"max\":35676},{\"attribute\":\"POP2015\",\"count\":144,\"type\":\"number\",\"values\":[0,1022,1024,1027,1029,1044,10495,10530,10572,1087,1096,1098,1102,1104,1106,1108,1127,11337,1139,1160,11662,11741,1182,1185,1212,12171,12503,12773,1285,13089,1321,1324,1374,1379,1409,1421,14796,1500,1504,1505,1516,1519,1520,15577,15789,1597,1621,1645,1651,1663,1664,1669,1692,1708,1724,1744,1787,1793,1804,1846,1877,1931,1941,19441,1947,19485,19582,1994,20072,2030,2159,2209,2219,2247,2298,2305,2322,2332,2340,2345,2385,2396,2651,2675,2748,2856,2890,3098,3256,3267,3319,3333,3346,3357,3363,3423,3453,3544,3574,36094],\"min\":0,\"max\":36094},{\"attribute\":\"POP2020\",\"count\":143,\"type\":\"number\",\"values\":[0,10007,1004,1015,1029,10524,1064,10792,1092,1102,1108,1113,11177,11313,11365,1152,1159,1165,1169,1177,1185,1232,1233,12403,1258,12775,12786,1281,1284,12842,1308,13160,13432,13465,1398,1405,1457,1482,1506,1527,1587,1649,1655,1670,1676,17015,17039,1709,17214,1729,1735,1744,1794,1804,1839,1864,1879,1921,1938,1949,1979,1984,19974,2006,20189,2028,2035,2038,2051,20544,2058,2130,2151,21946,2229,2277,2310,2416,2451,2502,2525,2532,2558,2592,2620,2621,2688,2770,2862,2955,2981,2996,3275,3278,3306,3330,3434,3453,3475,3504],\"min\":0,\"max\":36371},{\"attribute\":\"POP2025\",\"count\":144,\"type\":\"number\",\"values\":[0,10031,1011,1044,10526,1078,1095,1102,1104,1114,1132,11368,1148,1159,11689,11695,1195,1196,1200,1236,1257,1268,1274,1317,13179,1321,1326,13461,13653,13807,13875,13892,1413,14134,1441,14451,1481,1515,1544,1578,1580,1627,1653,1655,1736,1744,1753,1776,1797,1804,1820,18466,18707,1883,1894,1938,19422,1949,2027,2037,20370,20695,2083,2097,2111,21124,2119,2142,2150,2189,2235,2312,2380,2393,24051,2410,2457,2476,2506,2590,2633,2636,2642,2713,2722,2772,2790,2851,2971,3012,3041,3058,3104,3293,3300,3330,3436,3482,3537,3600],\"min\":0,\"max\":36399},{\"attribute\":\"POP2050\",\"count\":143,\"type\":\"number\",\"values\":[0,10036,10526,1089,1096,1102,1112,1114,11368,1159,1163,1193,12102,1220,1236,12363,1315,1320,1332,13413,1343,1359,13672,13768,1406,1411,14545,1461,1472,1475,14808,1520,15561,15796,1604,1655,16762,1690,1715,1736,1737,1744,1759,1804,1883,1902,1907,1938,19412,1949,2028,2047,20560,20628,2077,2083,21009,21428,2150,2172,2173,2178,2187,22015,2222,2247,2316,2444,2496,2529,2549,2560,2632,26385,2661,2715,2772,2791,2855,2856,2885,2892,2911,2956,3038,3086,3118,3198,3214,3305,3326,3330,3346,3358,3382,3436,3605,3619,3630,36400],\"min\":0,\"max\":36400},{\"attribute\":\"POP_MAX\",\"count\":240,\"type\":\"number\",\"values\":[10061000,1024000,1029300,1031000,1041000,10452000,1059000,1060000,107260,1085000,1086244,1099000,1100000,1102000,11100000,11106000,1115000,111975,112927,11294000,113364,1145000,1149000,115826,1162000,11748000,1185000,11893000,1240000,1245000,12500000,1264000,12795000,12797394,1281000,1284000,128698,1328000,1338000,1355000,1379000,1406000,1420000,1433000,1446000,1448000,1450000,1452000,145850,1466000,14787000,1494000,14987000,1513000,15220,155963,1572000,1576000,1590000,1611000,166212,1679000,1697000,1701000,1705000,1707000,1743000,175399,1805000,1846000,1870000,188084,18845000,18978000,19028000,19040000,191152,1942000,1998000,2008000,2063000,206499,208411,2121000,2122300,2151000,2154000,217000,2174000,218269,2184000,21887,2189000,224300,224838,227940,2313000,2313328,23336,234331],\"min\":500,\"max\":35676000},{\"attribute\":\"POP_MIN\",\"count\":243,\"type\":\"number\",\"values\":[10021295,1005257,1019022,103693,10452000,1060000,1060587,10634,10811002,1085000,10929146,1093485,1099000,11177,111975,1122874,1137347,113906,115826,1163890,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1297281,1338000,13381,1353189,136473,13768,1391433,1399814,140000,1431270,1448000,1459640,14608512,1466000,148416,1494000,1508225,1536,1542813,1548599,15500,155963,157474,1577138,159243,15938,160966,162135,1655753,16571,1662508,1679000,1702139,1712125,1724,1731000,1742194,176365,180541,1815679,1835853,1892000,192385,193563,194530,194824,1951272,1963264,1974647,1977663,1978028,198214,1990917,199200,200,200452,2010175,2026469,20500,2087,217000,221736,22256,223757,22534,22881,229398,234032,234168,235017,23658,24226],\"min\":200,\"max\":14608512},{\"attribute\":\"POP_OTHER\",\"count\":218,\"type\":\"number\",\"values\":[0,10018444,1014546,102371,10271457,1037811,1038288,10585385,1060640,1060747,1061388,106219,1072567,1074640,1081361,1088042,1088194,1099610,111975,112572,1149981,11522944,1152904,1154748,11622929,1166878,1174778,12018058,1208361,1240558,12426085,1256715,1271541,1276128,12945252,1301407,130815,1365454,13720557,140594,142265,1434681,1435528,1443084,1480886,1490164,1498020,14995538,1518801,1521278,15220,1557919,158896,160116,1604086,1611692,1636574,164877,1661980,1675117,16803572,1682968,1718895,1742507,176365,1772679,1795582,1805353,18171,1821489,1827367,1831877,1844658,191814,1930305,1951272,2012431,2029349,2044401,2050212,206499,2139587,2153702,2175991,21887,221736,222513,222985,22478,2306851,2325931,23336,2334371,2381280,2385397,2391150,2401318,243794,2456292,2470140],\"min\":0,\"max\":16803572},{\"attribute\":\"RANK_MAX\",\"count\":12,\"type\":\"number\",\"values\":[10,11,12,13,14,2,4,5,6,7,8,9],\"min\":2,\"max\":14},{\"attribute\":\"RANK_MIN\",\"count\":14,\"type\":\"number\",\"values\":[1,10,11,12,13,14,2,3,4,5,6,7,8,9],\"min\":1,\"max\":14},{\"attribute\":\"SCALERANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,4,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"SOV0NAME\",\"count\":197,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"French Republic\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kingdom of Norway\",\"Kingdom of Spain\",\"Kingdom of the Netherlands\",\"Kiribati\",\"Korea, North\",\"Korea, South\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\"]},{\"attribute\":\"SOV_A3\",\"count\":197,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\"]},{\"attribute\":\"TIMEZONE\",\"count\":187,\"type\":\"string\",\"values\":[\"Africa/Abidjan\",\"Africa/Accra\",\"Africa/Addis_Ababa\",\"Africa/Algiers\",\"Africa/Asmara\",\"Africa/Bamako\",\"Africa/Bangui\",\"Africa/Banjul\",\"Africa/Bissau\",\"Africa/Blantyre\",\"Africa/Brazzaville\",\"Africa/Bujumbura\",\"Africa/Cairo\",\"Africa/Casablanca\",\"Africa/Conakry\",\"Africa/Dakar\",\"Africa/Dar_es_Salaam\",\"Africa/Djibouti\",\"Africa/Douala\",\"Africa/El_Aaiun\",\"Africa/Freetown\",\"Africa/Gaborone\",\"Africa/Harare\",\"Africa/Johannesburg\",\"Africa/Kampala\",\"Africa/Khartoum\",\"Africa/Kigali\",\"Africa/Kinshasa\",\"Africa/Lagos\",\"Africa/Libreville\",\"Africa/Lome\",\"Africa/Luanda\",\"Africa/Lusaka\",\"Africa/Malabo\",\"Africa/Maputo\",\"Africa/Maseru\",\"Africa/Mbabane\",\"Africa/Mogadishu\",\"Africa/Monrovia\",\"Africa/Nairobi\",\"Africa/Ndjamena\",\"Africa/Niamey\",\"Africa/Nouakchott\",\"Africa/Ouagadougou\",\"Africa/Porto-Novo\",\"Africa/Tunis\",\"Africa/Windhoek\",\"America/Antigua\",\"America/Argentina/Buenos_Aires\",\"America/Belize\",\"America/Bogota\",\"America/Caracas\",\"America/Chicago\",\"America/Dominica\",\"America/Fortaleza\",\"America/Grenada\",\"America/Guatemala\",\"America/Guayaquil\",\"America/Guyana\",\"America/Havana\",\"America/Jamaica\",\"America/La_Paz\",\"America/Lima\",\"America/Los_Angeles\",\"America/Managua\",\"America/Mexico_City\",\"America/Monterrey\",\"America/Montreal\",\"America/Nassau\",\"America/New_York\",\"America/Panama\",\"America/Paramaribo\",\"America/Port-au-Prince\",\"America/Port_of_Spain\",\"America/Sao_Paulo\",\"America/St_Kitts\",\"America/Tegucigalpa\",\"America/Toronto\",\"America/Vancouver\",\"Asia/Amman\",\"Asia/Ashgabat\",\"Asia/Baghdad\",\"Asia/Bahrain\",\"Asia/Baku\",\"Asia/Bangkok\",\"Asia/Beirut\",\"Asia/Bishkek\",\"Asia/Brunei\",\"Asia/Chongqing\",\"Asia/Colombo\",\"Asia/Dhaka\",\"Asia/Dili\",\"Asia/Dubai\",\"Asia/Dushanbe\",\"Asia/Harbin\",\"Asia/Ho_Chi_Minh\",\"Asia/Hong_Kong\",\"Asia/Jakarta\",\"Asia/Jerusalem\",\"Asia/Kabul\"]},{\"attribute\":\"UN_ADM0\",\"count\":116,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Algeria\",\"Angola\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Benin\",\"Bolivia\",\"Brazil\",\"Bulgaria\",\"Burkina Faso\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Chad\",\"Chile\",\"China\",\"China, Hong Kong Special Administrative Region\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Cuba\",\"Czech Republic\",\"Côte d'Ivoire\",\"Democratic People's Republic of Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Ethiopia\",\"Finland\",\"France\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Haiti\",\"Honduras\",\"Hungary\",\"India\",\"Indonesia\",\"Iran (Islamic Republic of)\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Japan\",\"Jordan\",\"Kenya\",\"Kuwait\",\"Kyrgyzstan\",\"Lebanon\",\"Liberia\",\"Libyan Arab Jamahiriya\",\"Madagascar\",\"Malaysia\",\"Mali\",\"Mexico\",\"Mongolia\",\"Morocco\",\"Mozambique\",\"Myanmar\",\"Nepal\",\"Netherlands\",\"New Zealand\",\"Nicaragua\",\"Niger\",\"Nigeria\",\"Norway\",\"Pakistan\",\"Panama\",\"Paraguay\",\"Peru\",\"Philippines\",\"Poland\",\"Portugal\",\"Republic of Korea\",\"Romania\",\"Russian Federation\",\"Rwanda\",\"Saudi Arabia\",\"Senegal\",\"Serbia\",\"Sierra Leone\",\"Singapore\",\"Somalia\",\"South Africa\",\"Spain\",\"Sudan\",\"Sweden\",\"Syrian Arab Republic\"]},{\"attribute\":\"UN_FID\",\"count\":145,\"type\":\"number\",\"values\":[0,111,118,13,14,15,16,161,166,168,17,171,172,173,174,175,176,178,179,18,180,182,183,189,191,192,196,198,2,200,201,206,207,208,209,210,211,219,24,245,253,274,276,280,297,3,300,302,304,308,31,310,313,315,318,320,321,322,324,327,336,339,340,341,342,344,345,348,349,352,359,367,369,372,375,376,377,378,379,381,382,384,385,386,392,397,4,401,408,409,411,414,418,419,422,426,439,440,444,447],\"min\":0,\"max\":589},{\"attribute\":\"UN_LAT\",\"count\":145,\"type\":\"number\",\"values\":[-0.22,-1.26,-1.95,-12.08,-15.42,-15.79,-17.82,-18.9,-22.72,-23.58,-25.3,-25.73,-25.96,-26.17,-33.02,-33.88,-33.97,-34.62,-34.92,-36.9,-37.85,-4.28,-4.32,-6.16,-6.81,-8.81,0,0.32,1.26,10.49,11.56,12.1,12.15,12.48,12.65,12.97,13.51,13.7,13.75,14.09,14.61,14.68,15.36,15.55,16.87,18.48,18.52,19.07,19.42,19.75,2.04,21.03,22.27,22.54,23.04,23.7,24.15,24.65,25.03,25.27,25.67,25.83,27.71,29.38,29.77,3.14,3.86,30.07,30.67,31.24,31.94,32.04,33.33,33.49,33.6,33.71,33.79,33.88,34,34.01,34.34,34.53,34.63,35,35.68,35.77,36.78,37.54,37.79,37.94,38.72,38.89,39.02,39.57,39.9,39.92,4.63,40.2,40.32,40.44],\"min\":-37.85,\"max\":60.19},{\"attribute\":\"UN_LONG\",\"count\":144,\"type\":\"number\",\"values\":[-0.17,-0.2,-1.67,-10.79,-100.31,-105.07,-110.3,-118.25,-122.38,-122.96,-13.23,-13.67,-17.45,-3.69,-4.02,-43.45,-46.62,-47.89,-56.16,-57.62,-58.44,-6.25,-6.83,-66.89,-69.89,-7.63,-7.98,-71.55,-72.34,-73.9,-74.08,-75.65,-76.95,-77.04,-78.52,-79.41,-79.51,-80.27,-80.96,-82.41,-84.07,-84.34,-86.27,-87.2,-87.64,-89.2,-9.12,-90.52,-95.4,-99.12,0,1.2,10.71,100.51,101.7,103.83,104.07,104.91,105.82,106.8,106.91,11.51,114.17,116.38,12.51,12.54,120.96,121.47,121.5,125.75,126.93,13.23,13.32,135.51,135.75,139.8,14.45,145.07,15.24,15.28,15.29,151.02,16.32,17.99,174.76,18.48,19.09,2.12,2.43,20.41,21.01,23.33,23.65,24.97,26.12,27.57,28,28.17,28.21,29],\"min\":-122.96,\"max\":174.76},{\"attribute\":\"WORLDCITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1}]}]}}", +"maxzoom": "3", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z20_-r1_--generate-variable-depth-tile-pyramid_--limit-tile-feature-count_50.json.check.mbtiles", "strategies": "[{},{\"truncated_zooms\":2},{\"truncated_zooms\":2},{\"truncated_zooms\":8},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}]", diff --git a/tests/raw-tiles/nothing.json b/tests/raw-tiles/nothing.json index c8dedd8e3..beea00c33 100644 --- a/tests/raw-tiles/nothing.json +++ b/tests/raw-tiles/nothing.json @@ -1,14 +1,15 @@ { "type": "FeatureCollection", "properties": { "antimeridian_adjusted_bounds": "0.000000,85.051129,0.000000,85.051129", "bounds": "-180.000000,85.051129,180.000000,85.051129", -"center": "-179.989014,85.051129,14", +"center": "0.000000,85.051129,0", "description": "tests/raw-tiles/nothing", "format": "pbf", "generator_options": "./tippecanoe -q -f -e tests/raw-tiles/nothing tests/raw-tiles/nothing.geojson", -"json": "{\"vector_layers\":[{\"id\":\"nothing\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":14,\"fields\":{}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"nothing\",\"count\":1,\"geometry\":\"Point\",\"attributeCount\":0,\"attributes\":[]}]}}", -"maxzoom": "14", +"json": "{\"vector_layers\":[{\"id\":\"nothing\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":0,\"fields\":{}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"nothing\",\"count\":1,\"geometry\":\"Point\",\"attributeCount\":0,\"attributes\":[]}]}}", +"maxzoom": "0", "minzoom": "0", "name": "tests/raw-tiles/nothing", +"tippecanoe_decisions": "{\"basezoom\":14,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/tl_2022_11_tract/out/-z14_-Z12_--coalesce-densest-as-needed_--generate-variable-depth-tile-pyramid_-M25000.json b/tests/tl_2022_11_tract/out/-z14_-Z12_--coalesce-densest-as-needed_--generate-variable-depth-tile-pyramid_-M25000.json index f6b74a01e..f4993c676 100644 --- a/tests/tl_2022_11_tract/out/-z14_-Z12_--coalesce-densest-as-needed_--generate-variable-depth-tile-pyramid_-M25000.json +++ b/tests/tl_2022_11_tract/out/-z14_-Z12_--coalesce-densest-as-needed_--generate-variable-depth-tile-pyramid_-M25000.json @@ -1,15 +1,16 @@ { "type": "FeatureCollection", "properties": { "antimeridian_adjusted_bounds": "-77.119756,38.791645,-76.909390,38.995845", "bounds": "-77.119756,38.791645,-76.909390,38.995845", -"center": "-77.113037,38.950865,14", +"center": "-76.909390,38.791645,13", "description": "tests/tl_2022_11_tract/out/-z14_-Z12_--coalesce-densest-as-needed_--generate-variable-depth-tile-pyramid_-M25000.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/tl_2022_11_tract/out/-z14_-Z12_--coalesce-densest-as-needed_--generate-variable-depth-tile-pyramid_-M25000.json.check.mbtiles -z14 -Z12 --coalesce-densest-as-needed --generate-variable-depth-tile-pyramid -M25000 tests/tl_2022_11_tract/in.json.gz", -"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":12,\"maxzoom\":14,\"fields\":{\"ALAND\":\"Number\",\"AWATER\":\"Number\",\"COUNTYFP\":\"String\",\"FUNCSTAT\":\"String\",\"GEOID\":\"String\",\"INTPTLAT\":\"String\",\"INTPTLON\":\"String\",\"MTFCC\":\"String\",\"NAME\":\"String\",\"NAMELSAD\":\"String\",\"STATEFP\":\"String\",\"TRACTCE\":\"String\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":206,\"geometry\":\"Polygon\",\"attributeCount\":12,\"attributes\":[{\"attribute\":\"ALAND\",\"count\":206,\"type\":\"number\",\"values\":[1017741,1033168,1033208,1037012,1042156,1069487,1084591,1109091,1115359,1136289,1168294,117635,119532,120715,1209113,1219204,1226616,1232841,124124,1294556,1306709,1369580,1423609,1427114,143156,1441865,1471925,148928,152450,1541239,1542277,1582882,163863,164749,1676650,168769,1688582,1706484,171910,172840,174883,1816287,183977,185309,1867106,1905262,194755,198509,199776,200745,200969,2010924,2024710,204237,204529,207186,207646,2102150,2106150,210636,213338,219939,224811,229696,232137,232951,236694,2381079,244750,246292,246895,247945,251302,252684,2566768,2602393,260891,263879,266513,2667590,271037,271866,273491,274180,274746,280108,285156,2855501,288793,290284,292105,295290,295339,296819,300632,303970,305616,305651,308153,308465],\"min\":93419,\"max\":6514228},{\"attribute\":\"AWATER\",\"count\":61,\"type\":\"number\",\"values\":[0,1059,11205,1132,1275,129100,136359,14058,141529,149901,159593,167978,189666,200980,2305,2414,2427,243648,26550,2933589,29503,307257,312419,31550,31909,3427,366232,367035,3755,3756,39895,439661,4682,477741,4996393,5139082,516665,5261,5274,5298,5609,566,5705,5767,60195,6261,65762,669985,67073,69,7006,71,7175,7303,75151,7722,7820,7884,82685,8983,9432],\"min\":0,\"max\":5139082},{\"attribute\":\"COUNTYFP\",\"count\":1,\"type\":\"string\",\"values\":[\"001\"]},{\"attribute\":\"FUNCSTAT\",\"count\":1,\"type\":\"string\",\"values\":[\"S\"]},{\"attribute\":\"GEOID\",\"count\":206,\"type\":\"string\",\"values\":[\"11001000101\",\"11001000102\",\"11001000201\",\"11001000202\",\"11001000300\",\"11001000400\",\"11001000501\",\"11001000502\",\"11001000600\",\"11001000702\",\"11001000703\",\"11001000704\",\"11001000802\",\"11001000803\",\"11001000804\",\"11001000902\",\"11001000903\",\"11001000904\",\"11001001002\",\"11001001003\",\"11001001004\",\"11001001100\",\"11001001200\",\"11001001301\",\"11001001303\",\"11001001304\",\"11001001401\",\"11001001402\",\"11001001500\",\"11001001600\",\"11001001702\",\"11001001803\",\"11001001804\",\"11001001901\",\"11001001902\",\"11001002001\",\"11001002002\",\"11001002101\",\"11001002102\",\"11001002201\",\"11001002202\",\"11001002301\",\"11001002302\",\"11001002400\",\"11001002501\",\"11001002503\",\"11001002504\",\"11001002600\",\"11001002702\",\"11001002703\",\"11001002704\",\"11001002801\",\"11001002802\",\"11001002900\",\"11001003000\",\"11001003100\",\"11001003200\",\"11001003301\",\"11001003302\",\"11001003400\",\"11001003500\",\"11001003600\",\"11001003701\",\"11001003702\",\"11001003801\",\"11001003802\",\"11001003901\",\"11001003902\",\"11001004001\",\"11001004002\",\"11001004100\",\"11001004201\",\"11001004202\",\"11001004300\",\"11001004401\",\"11001004402\",\"11001004600\",\"11001004702\",\"11001004703\",\"11001004704\",\"11001004801\",\"11001004802\",\"11001004901\",\"11001004902\",\"11001005001\",\"11001005003\",\"11001005004\",\"11001005202\",\"11001005203\",\"11001005302\",\"11001005303\",\"11001005501\",\"11001005502\",\"11001005503\",\"11001005601\",\"11001005602\",\"11001005801\",\"11001005802\",\"11001005900\",\"11001006400\"]},{\"attribute\":\"INTPTLAT\",\"count\":206,\"type\":\"string\",\"values\":[\"+38.8132364\",\"+38.8260370\",\"+38.8266510\",\"+38.8292038\",\"+38.8307312\",\"+38.8328939\",\"+38.8349280\",\"+38.8354183\",\"+38.8356929\",\"+38.8417979\",\"+38.8420148\",\"+38.8445818\",\"+38.8484714\",\"+38.8503364\",\"+38.8512668\",\"+38.8525662\",\"+38.8555543\",\"+38.8568592\",\"+38.8574823\",\"+38.8591090\",\"+38.8609955\",\"+38.8640724\",\"+38.8660433\",\"+38.8660921\",\"+38.8675208\",\"+38.8681789\",\"+38.8688572\",\"+38.8716327\",\"+38.8717861\",\"+38.8738481\",\"+38.8741656\",\"+38.8753461\",\"+38.8771811\",\"+38.8779453\",\"+38.8779576\",\"+38.8781777\",\"+38.8786426\",\"+38.8798620\",\"+38.8809933\",\"+38.8812697\",\"+38.8818529\",\"+38.8827718\",\"+38.8832158\",\"+38.8836933\",\"+38.8838480\",\"+38.8843295\",\"+38.8843563\",\"+38.8851712\",\"+38.8863224\",\"+38.8863842\",\"+38.8871944\",\"+38.8875984\",\"+38.8877413\",\"+38.8877585\",\"+38.8879464\",\"+38.8883180\",\"+38.8915403\",\"+38.8918285\",\"+38.8918309\",\"+38.8922212\",\"+38.8931572\",\"+38.8931710\",\"+38.8942107\",\"+38.8959944\",\"+38.8961726\",\"+38.8962674\",\"+38.8963061\",\"+38.8964252\",\"+38.8965543\",\"+38.8970372\",\"+38.8973521\",\"+38.8975634\",\"+38.8979674\",\"+38.8985783\",\"+38.8985960\",\"+38.8988888\",\"+38.9008601\",\"+38.9009808\",\"+38.9011144\",\"+38.9015402\",\"+38.9015543\",\"+38.9015670\",\"+38.9026971\",\"+38.9033936\",\"+38.9034762\",\"+38.9035769\",\"+38.9039498\",\"+38.9039988\",\"+38.9041579\",\"+38.9045660\",\"+38.9052766\",\"+38.9054220\",\"+38.9055926\",\"+38.9058867\",\"+38.9062118\",\"+38.9062488\",\"+38.9063048\",\"+38.9072520\",\"+38.9074041\",\"+38.9076530\"]},{\"attribute\":\"INTPTLON\",\"count\":206,\"type\":\"string\",\"values\":[\"-076.9192026\",\"-076.9210632\",\"-076.9212121\",\"-076.9250522\",\"-076.9311353\",\"-076.9313427\",\"-076.9321955\",\"-076.9325520\",\"-076.9353432\",\"-076.9359151\",\"-076.9388146\",\"-076.9407751\",\"-076.9445542\",\"-076.9474550\",\"-076.9477195\",\"-076.9490606\",\"-076.9523616\",\"-076.9545101\",\"-076.9553332\",\"-076.9585043\",\"-076.9585469\",\"-076.9606349\",\"-076.9638007\",\"-076.9675363\",\"-076.9681631\",\"-076.9697843\",\"-076.9704836\",\"-076.9706266\",\"-076.9742464\",\"-076.9743021\",\"-076.9743805\",\"-076.9748514\",\"-076.9751650\",\"-076.9752566\",\"-076.9777180\",\"-076.9796257\",\"-076.9798185\",\"-076.9801087\",\"-076.9804319\",\"-076.9812669\",\"-076.9814483\",\"-076.9820932\",\"-076.9827594\",\"-076.9845276\",\"-076.9850206\",\"-076.9855591\",\"-076.9864892\",\"-076.9866524\",\"-076.9866786\",\"-076.9868380\",\"-076.9870248\",\"-076.9870900\",\"-076.9873112\",\"-076.9888946\",\"-076.9895582\",\"-076.9899590\",\"-076.9907773\",\"-076.9910210\",\"-076.9911234\",\"-076.9913622\",\"-076.9925272\",\"-076.9931121\",\"-076.9950319\",\"-076.9959451\",\"-076.9963306\",\"-076.9965578\",\"-076.9966527\",\"-076.9972580\",\"-076.9977787\",\"-076.9982439\",\"-076.9984594\",\"-076.9985582\",\"-076.9987071\",\"-076.9990184\",\"-076.9991203\",\"-076.9994636\",\"-076.9994857\",\"-076.9999179\",\"-077.0006040\",\"-077.0008008\",\"-077.0009082\",\"-077.0010516\",\"-077.0013085\",\"-077.0033314\",\"-077.0037886\",\"-077.0043421\",\"-077.0046255\",\"-077.0051999\",\"-077.0054956\",\"-077.0062645\",\"-077.0063018\",\"-077.0063567\",\"-077.0070741\",\"-077.0095843\",\"-077.0111677\",\"-077.0114293\",\"-077.0114342\",\"-077.0114767\",\"-077.0117577\",\"-077.0118821\"]},{\"attribute\":\"MTFCC\",\"count\":1,\"type\":\"string\",\"values\":[\"G5020\"]},{\"attribute\":\"NAME\",\"count\":206,\"type\":\"string\",\"values\":[\"1.01\",\"1.02\",\"10.02\",\"10.03\",\"10.04\",\"101\",\"102.01\",\"102.02\",\"103\",\"104\",\"105\",\"106.01\",\"106.02\",\"106.03\",\"107\",\"108\",\"109\",\"11\",\"110.01\",\"110.02\",\"111\",\"12\",\"13.01\",\"13.03\",\"13.04\",\"14.01\",\"14.02\",\"15\",\"16\",\"17.02\",\"18.03\",\"18.04\",\"19.01\",\"19.02\",\"2.01\",\"2.02\",\"20.01\",\"20.02\",\"21.01\",\"21.02\",\"22.01\",\"22.02\",\"23.01\",\"23.02\",\"24\",\"25.01\",\"25.03\",\"25.04\",\"26\",\"27.02\",\"27.03\",\"27.04\",\"28.01\",\"28.02\",\"29\",\"3\",\"30\",\"31\",\"32\",\"33.01\",\"33.02\",\"34\",\"35\",\"36\",\"37.01\",\"37.02\",\"38.01\",\"38.02\",\"39.01\",\"39.02\",\"4\",\"40.01\",\"40.02\",\"41\",\"42.01\",\"42.02\",\"43\",\"44.01\",\"44.02\",\"46\",\"47.02\",\"47.03\",\"47.04\",\"48.01\",\"48.02\",\"49.01\",\"49.02\",\"5.01\",\"5.02\",\"50.01\",\"50.03\",\"50.04\",\"52.02\",\"52.03\",\"53.02\",\"53.03\",\"55.01\",\"55.02\",\"55.03\",\"56.01\"]},{\"attribute\":\"NAMELSAD\",\"count\":206,\"type\":\"string\",\"values\":[\"Census Tract 1.01\",\"Census Tract 1.02\",\"Census Tract 10.02\",\"Census Tract 10.03\",\"Census Tract 10.04\",\"Census Tract 101\",\"Census Tract 102.01\",\"Census Tract 102.02\",\"Census Tract 103\",\"Census Tract 104\",\"Census Tract 105\",\"Census Tract 106.01\",\"Census Tract 106.02\",\"Census Tract 106.03\",\"Census Tract 107\",\"Census Tract 108\",\"Census Tract 109\",\"Census Tract 11\",\"Census Tract 110.01\",\"Census Tract 110.02\",\"Census Tract 111\",\"Census Tract 12\",\"Census Tract 13.01\",\"Census Tract 13.03\",\"Census Tract 13.04\",\"Census Tract 14.01\",\"Census Tract 14.02\",\"Census Tract 15\",\"Census Tract 16\",\"Census Tract 17.02\",\"Census Tract 18.03\",\"Census Tract 18.04\",\"Census Tract 19.01\",\"Census Tract 19.02\",\"Census Tract 2.01\",\"Census Tract 2.02\",\"Census Tract 20.01\",\"Census Tract 20.02\",\"Census Tract 21.01\",\"Census Tract 21.02\",\"Census Tract 22.01\",\"Census Tract 22.02\",\"Census Tract 23.01\",\"Census Tract 23.02\",\"Census Tract 24\",\"Census Tract 25.01\",\"Census Tract 25.03\",\"Census Tract 25.04\",\"Census Tract 26\",\"Census Tract 27.02\",\"Census Tract 27.03\",\"Census Tract 27.04\",\"Census Tract 28.01\",\"Census Tract 28.02\",\"Census Tract 29\",\"Census Tract 3\",\"Census Tract 30\",\"Census Tract 31\",\"Census Tract 32\",\"Census Tract 33.01\",\"Census Tract 33.02\",\"Census Tract 34\",\"Census Tract 35\",\"Census Tract 36\",\"Census Tract 37.01\",\"Census Tract 37.02\",\"Census Tract 38.01\",\"Census Tract 38.02\",\"Census Tract 39.01\",\"Census Tract 39.02\",\"Census Tract 4\",\"Census Tract 40.01\",\"Census Tract 40.02\",\"Census Tract 41\",\"Census Tract 42.01\",\"Census Tract 42.02\",\"Census Tract 43\",\"Census Tract 44.01\",\"Census Tract 44.02\",\"Census Tract 46\",\"Census Tract 47.02\",\"Census Tract 47.03\",\"Census Tract 47.04\",\"Census Tract 48.01\",\"Census Tract 48.02\",\"Census Tract 49.01\",\"Census Tract 49.02\",\"Census Tract 5.01\",\"Census Tract 5.02\",\"Census Tract 50.01\",\"Census Tract 50.03\",\"Census Tract 50.04\",\"Census Tract 52.02\",\"Census Tract 52.03\",\"Census Tract 53.02\",\"Census Tract 53.03\",\"Census Tract 55.01\",\"Census Tract 55.02\",\"Census Tract 55.03\",\"Census Tract 56.01\"]},{\"attribute\":\"STATEFP\",\"count\":1,\"type\":\"string\",\"values\":[\"11\"]},{\"attribute\":\"TRACTCE\",\"count\":206,\"type\":\"string\",\"values\":[\"000101\",\"000102\",\"000201\",\"000202\",\"000300\",\"000400\",\"000501\",\"000502\",\"000600\",\"000702\",\"000703\",\"000704\",\"000802\",\"000803\",\"000804\",\"000902\",\"000903\",\"000904\",\"001002\",\"001003\",\"001004\",\"001100\",\"001200\",\"001301\",\"001303\",\"001304\",\"001401\",\"001402\",\"001500\",\"001600\",\"001702\",\"001803\",\"001804\",\"001901\",\"001902\",\"002001\",\"002002\",\"002101\",\"002102\",\"002201\",\"002202\",\"002301\",\"002302\",\"002400\",\"002501\",\"002503\",\"002504\",\"002600\",\"002702\",\"002703\",\"002704\",\"002801\",\"002802\",\"002900\",\"003000\",\"003100\",\"003200\",\"003301\",\"003302\",\"003400\",\"003500\",\"003600\",\"003701\",\"003702\",\"003801\",\"003802\",\"003901\",\"003902\",\"004001\",\"004002\",\"004100\",\"004201\",\"004202\",\"004300\",\"004401\",\"004402\",\"004600\",\"004702\",\"004703\",\"004704\",\"004801\",\"004802\",\"004901\",\"004902\",\"005001\",\"005003\",\"005004\",\"005202\",\"005203\",\"005302\",\"005303\",\"005501\",\"005502\",\"005503\",\"005601\",\"005602\",\"005801\",\"005802\",\"005900\",\"006400\"]}]}]}}", -"maxzoom": "14", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":12,\"maxzoom\":13,\"fields\":{\"ALAND\":\"Number\",\"AWATER\":\"Number\",\"COUNTYFP\":\"String\",\"FUNCSTAT\":\"String\",\"GEOID\":\"String\",\"INTPTLAT\":\"String\",\"INTPTLON\":\"String\",\"MTFCC\":\"String\",\"NAME\":\"String\",\"NAMELSAD\":\"String\",\"STATEFP\":\"String\",\"TRACTCE\":\"String\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":206,\"geometry\":\"Polygon\",\"attributeCount\":12,\"attributes\":[{\"attribute\":\"ALAND\",\"count\":206,\"type\":\"number\",\"values\":[1017741,1033168,1033208,1037012,1042156,1069487,1084591,1109091,1115359,1136289,1168294,117635,119532,120715,1209113,1219204,1226616,1232841,124124,1294556,1306709,1369580,1423609,1427114,143156,1441865,1471925,148928,152450,1541239,1542277,1582882,163863,164749,1676650,168769,1688582,1706484,171910,172840,174883,1816287,183977,185309,1867106,1905262,194755,198509,199776,200745,200969,2010924,2024710,204237,204529,207186,207646,2102150,2106150,210636,213338,219939,224811,229696,232137,232951,236694,2381079,244750,246292,246895,247945,251302,252684,2566768,2602393,260891,263879,266513,2667590,271037,271866,273491,274180,274746,280108,285156,2855501,288793,290284,292105,295290,295339,296819,300632,303970,305616,305651,308153,308465],\"min\":93419,\"max\":6514228},{\"attribute\":\"AWATER\",\"count\":61,\"type\":\"number\",\"values\":[0,1059,11205,1132,1275,129100,136359,14058,141529,149901,159593,167978,189666,200980,2305,2414,2427,243648,26550,2933589,29503,307257,312419,31550,31909,3427,366232,367035,3755,3756,39895,439661,4682,477741,4996393,5139082,516665,5261,5274,5298,5609,566,5705,5767,60195,6261,65762,669985,67073,69,7006,71,7175,7303,75151,7722,7820,7884,82685,8983,9432],\"min\":0,\"max\":5139082},{\"attribute\":\"COUNTYFP\",\"count\":1,\"type\":\"string\",\"values\":[\"001\"]},{\"attribute\":\"FUNCSTAT\",\"count\":1,\"type\":\"string\",\"values\":[\"S\"]},{\"attribute\":\"GEOID\",\"count\":206,\"type\":\"string\",\"values\":[\"11001000101\",\"11001000102\",\"11001000201\",\"11001000202\",\"11001000300\",\"11001000400\",\"11001000501\",\"11001000502\",\"11001000600\",\"11001000702\",\"11001000703\",\"11001000704\",\"11001000802\",\"11001000803\",\"11001000804\",\"11001000902\",\"11001000903\",\"11001000904\",\"11001001002\",\"11001001003\",\"11001001004\",\"11001001100\",\"11001001200\",\"11001001301\",\"11001001303\",\"11001001304\",\"11001001401\",\"11001001402\",\"11001001500\",\"11001001600\",\"11001001702\",\"11001001803\",\"11001001804\",\"11001001901\",\"11001001902\",\"11001002001\",\"11001002002\",\"11001002101\",\"11001002102\",\"11001002201\",\"11001002202\",\"11001002301\",\"11001002302\",\"11001002400\",\"11001002501\",\"11001002503\",\"11001002504\",\"11001002600\",\"11001002702\",\"11001002703\",\"11001002704\",\"11001002801\",\"11001002802\",\"11001002900\",\"11001003000\",\"11001003100\",\"11001003200\",\"11001003301\",\"11001003302\",\"11001003400\",\"11001003500\",\"11001003600\",\"11001003701\",\"11001003702\",\"11001003801\",\"11001003802\",\"11001003901\",\"11001003902\",\"11001004001\",\"11001004002\",\"11001004100\",\"11001004201\",\"11001004202\",\"11001004300\",\"11001004401\",\"11001004402\",\"11001004600\",\"11001004702\",\"11001004703\",\"11001004704\",\"11001004801\",\"11001004802\",\"11001004901\",\"11001004902\",\"11001005001\",\"11001005003\",\"11001005004\",\"11001005202\",\"11001005203\",\"11001005302\",\"11001005303\",\"11001005501\",\"11001005502\",\"11001005503\",\"11001005601\",\"11001005602\",\"11001005801\",\"11001005802\",\"11001005900\",\"11001006400\"]},{\"attribute\":\"INTPTLAT\",\"count\":206,\"type\":\"string\",\"values\":[\"+38.8132364\",\"+38.8260370\",\"+38.8266510\",\"+38.8292038\",\"+38.8307312\",\"+38.8328939\",\"+38.8349280\",\"+38.8354183\",\"+38.8356929\",\"+38.8417979\",\"+38.8420148\",\"+38.8445818\",\"+38.8484714\",\"+38.8503364\",\"+38.8512668\",\"+38.8525662\",\"+38.8555543\",\"+38.8568592\",\"+38.8574823\",\"+38.8591090\",\"+38.8609955\",\"+38.8640724\",\"+38.8660433\",\"+38.8660921\",\"+38.8675208\",\"+38.8681789\",\"+38.8688572\",\"+38.8716327\",\"+38.8717861\",\"+38.8738481\",\"+38.8741656\",\"+38.8753461\",\"+38.8771811\",\"+38.8779453\",\"+38.8779576\",\"+38.8781777\",\"+38.8786426\",\"+38.8798620\",\"+38.8809933\",\"+38.8812697\",\"+38.8818529\",\"+38.8827718\",\"+38.8832158\",\"+38.8836933\",\"+38.8838480\",\"+38.8843295\",\"+38.8843563\",\"+38.8851712\",\"+38.8863224\",\"+38.8863842\",\"+38.8871944\",\"+38.8875984\",\"+38.8877413\",\"+38.8877585\",\"+38.8879464\",\"+38.8883180\",\"+38.8915403\",\"+38.8918285\",\"+38.8918309\",\"+38.8922212\",\"+38.8931572\",\"+38.8931710\",\"+38.8942107\",\"+38.8959944\",\"+38.8961726\",\"+38.8962674\",\"+38.8963061\",\"+38.8964252\",\"+38.8965543\",\"+38.8970372\",\"+38.8973521\",\"+38.8975634\",\"+38.8979674\",\"+38.8985783\",\"+38.8985960\",\"+38.8988888\",\"+38.9008601\",\"+38.9009808\",\"+38.9011144\",\"+38.9015402\",\"+38.9015543\",\"+38.9015670\",\"+38.9026971\",\"+38.9033936\",\"+38.9034762\",\"+38.9035769\",\"+38.9039498\",\"+38.9039988\",\"+38.9041579\",\"+38.9045660\",\"+38.9052766\",\"+38.9054220\",\"+38.9055926\",\"+38.9058867\",\"+38.9062118\",\"+38.9062488\",\"+38.9063048\",\"+38.9072520\",\"+38.9074041\",\"+38.9076530\"]},{\"attribute\":\"INTPTLON\",\"count\":206,\"type\":\"string\",\"values\":[\"-076.9192026\",\"-076.9210632\",\"-076.9212121\",\"-076.9250522\",\"-076.9311353\",\"-076.9313427\",\"-076.9321955\",\"-076.9325520\",\"-076.9353432\",\"-076.9359151\",\"-076.9388146\",\"-076.9407751\",\"-076.9445542\",\"-076.9474550\",\"-076.9477195\",\"-076.9490606\",\"-076.9523616\",\"-076.9545101\",\"-076.9553332\",\"-076.9585043\",\"-076.9585469\",\"-076.9606349\",\"-076.9638007\",\"-076.9675363\",\"-076.9681631\",\"-076.9697843\",\"-076.9704836\",\"-076.9706266\",\"-076.9742464\",\"-076.9743021\",\"-076.9743805\",\"-076.9748514\",\"-076.9751650\",\"-076.9752566\",\"-076.9777180\",\"-076.9796257\",\"-076.9798185\",\"-076.9801087\",\"-076.9804319\",\"-076.9812669\",\"-076.9814483\",\"-076.9820932\",\"-076.9827594\",\"-076.9845276\",\"-076.9850206\",\"-076.9855591\",\"-076.9864892\",\"-076.9866524\",\"-076.9866786\",\"-076.9868380\",\"-076.9870248\",\"-076.9870900\",\"-076.9873112\",\"-076.9888946\",\"-076.9895582\",\"-076.9899590\",\"-076.9907773\",\"-076.9910210\",\"-076.9911234\",\"-076.9913622\",\"-076.9925272\",\"-076.9931121\",\"-076.9950319\",\"-076.9959451\",\"-076.9963306\",\"-076.9965578\",\"-076.9966527\",\"-076.9972580\",\"-076.9977787\",\"-076.9982439\",\"-076.9984594\",\"-076.9985582\",\"-076.9987071\",\"-076.9990184\",\"-076.9991203\",\"-076.9994636\",\"-076.9994857\",\"-076.9999179\",\"-077.0006040\",\"-077.0008008\",\"-077.0009082\",\"-077.0010516\",\"-077.0013085\",\"-077.0033314\",\"-077.0037886\",\"-077.0043421\",\"-077.0046255\",\"-077.0051999\",\"-077.0054956\",\"-077.0062645\",\"-077.0063018\",\"-077.0063567\",\"-077.0070741\",\"-077.0095843\",\"-077.0111677\",\"-077.0114293\",\"-077.0114342\",\"-077.0114767\",\"-077.0117577\",\"-077.0118821\"]},{\"attribute\":\"MTFCC\",\"count\":1,\"type\":\"string\",\"values\":[\"G5020\"]},{\"attribute\":\"NAME\",\"count\":206,\"type\":\"string\",\"values\":[\"1.01\",\"1.02\",\"10.02\",\"10.03\",\"10.04\",\"101\",\"102.01\",\"102.02\",\"103\",\"104\",\"105\",\"106.01\",\"106.02\",\"106.03\",\"107\",\"108\",\"109\",\"11\",\"110.01\",\"110.02\",\"111\",\"12\",\"13.01\",\"13.03\",\"13.04\",\"14.01\",\"14.02\",\"15\",\"16\",\"17.02\",\"18.03\",\"18.04\",\"19.01\",\"19.02\",\"2.01\",\"2.02\",\"20.01\",\"20.02\",\"21.01\",\"21.02\",\"22.01\",\"22.02\",\"23.01\",\"23.02\",\"24\",\"25.01\",\"25.03\",\"25.04\",\"26\",\"27.02\",\"27.03\",\"27.04\",\"28.01\",\"28.02\",\"29\",\"3\",\"30\",\"31\",\"32\",\"33.01\",\"33.02\",\"34\",\"35\",\"36\",\"37.01\",\"37.02\",\"38.01\",\"38.02\",\"39.01\",\"39.02\",\"4\",\"40.01\",\"40.02\",\"41\",\"42.01\",\"42.02\",\"43\",\"44.01\",\"44.02\",\"46\",\"47.02\",\"47.03\",\"47.04\",\"48.01\",\"48.02\",\"49.01\",\"49.02\",\"5.01\",\"5.02\",\"50.01\",\"50.03\",\"50.04\",\"52.02\",\"52.03\",\"53.02\",\"53.03\",\"55.01\",\"55.02\",\"55.03\",\"56.01\"]},{\"attribute\":\"NAMELSAD\",\"count\":206,\"type\":\"string\",\"values\":[\"Census Tract 1.01\",\"Census Tract 1.02\",\"Census Tract 10.02\",\"Census Tract 10.03\",\"Census Tract 10.04\",\"Census Tract 101\",\"Census Tract 102.01\",\"Census Tract 102.02\",\"Census Tract 103\",\"Census Tract 104\",\"Census Tract 105\",\"Census Tract 106.01\",\"Census Tract 106.02\",\"Census Tract 106.03\",\"Census Tract 107\",\"Census Tract 108\",\"Census Tract 109\",\"Census Tract 11\",\"Census Tract 110.01\",\"Census Tract 110.02\",\"Census Tract 111\",\"Census Tract 12\",\"Census Tract 13.01\",\"Census Tract 13.03\",\"Census Tract 13.04\",\"Census Tract 14.01\",\"Census Tract 14.02\",\"Census Tract 15\",\"Census Tract 16\",\"Census Tract 17.02\",\"Census Tract 18.03\",\"Census Tract 18.04\",\"Census Tract 19.01\",\"Census Tract 19.02\",\"Census Tract 2.01\",\"Census Tract 2.02\",\"Census Tract 20.01\",\"Census Tract 20.02\",\"Census Tract 21.01\",\"Census Tract 21.02\",\"Census Tract 22.01\",\"Census Tract 22.02\",\"Census Tract 23.01\",\"Census Tract 23.02\",\"Census Tract 24\",\"Census Tract 25.01\",\"Census Tract 25.03\",\"Census Tract 25.04\",\"Census Tract 26\",\"Census Tract 27.02\",\"Census Tract 27.03\",\"Census Tract 27.04\",\"Census Tract 28.01\",\"Census Tract 28.02\",\"Census Tract 29\",\"Census Tract 3\",\"Census Tract 30\",\"Census Tract 31\",\"Census Tract 32\",\"Census Tract 33.01\",\"Census Tract 33.02\",\"Census Tract 34\",\"Census Tract 35\",\"Census Tract 36\",\"Census Tract 37.01\",\"Census Tract 37.02\",\"Census Tract 38.01\",\"Census Tract 38.02\",\"Census Tract 39.01\",\"Census Tract 39.02\",\"Census Tract 4\",\"Census Tract 40.01\",\"Census Tract 40.02\",\"Census Tract 41\",\"Census Tract 42.01\",\"Census Tract 42.02\",\"Census Tract 43\",\"Census Tract 44.01\",\"Census Tract 44.02\",\"Census Tract 46\",\"Census Tract 47.02\",\"Census Tract 47.03\",\"Census Tract 47.04\",\"Census Tract 48.01\",\"Census Tract 48.02\",\"Census Tract 49.01\",\"Census Tract 49.02\",\"Census Tract 5.01\",\"Census Tract 5.02\",\"Census Tract 50.01\",\"Census Tract 50.03\",\"Census Tract 50.04\",\"Census Tract 52.02\",\"Census Tract 52.03\",\"Census Tract 53.02\",\"Census Tract 53.03\",\"Census Tract 55.01\",\"Census Tract 55.02\",\"Census Tract 55.03\",\"Census Tract 56.01\"]},{\"attribute\":\"STATEFP\",\"count\":1,\"type\":\"string\",\"values\":[\"11\"]},{\"attribute\":\"TRACTCE\",\"count\":206,\"type\":\"string\",\"values\":[\"000101\",\"000102\",\"000201\",\"000202\",\"000300\",\"000400\",\"000501\",\"000502\",\"000600\",\"000702\",\"000703\",\"000704\",\"000802\",\"000803\",\"000804\",\"000902\",\"000903\",\"000904\",\"001002\",\"001003\",\"001004\",\"001100\",\"001200\",\"001301\",\"001303\",\"001304\",\"001401\",\"001402\",\"001500\",\"001600\",\"001702\",\"001803\",\"001804\",\"001901\",\"001902\",\"002001\",\"002002\",\"002101\",\"002102\",\"002201\",\"002202\",\"002301\",\"002302\",\"002400\",\"002501\",\"002503\",\"002504\",\"002600\",\"002702\",\"002703\",\"002704\",\"002801\",\"002802\",\"002900\",\"003000\",\"003100\",\"003200\",\"003301\",\"003302\",\"003400\",\"003500\",\"003600\",\"003701\",\"003702\",\"003801\",\"003802\",\"003901\",\"003902\",\"004001\",\"004002\",\"004100\",\"004201\",\"004202\",\"004300\",\"004401\",\"004402\",\"004600\",\"004702\",\"004703\",\"004704\",\"004801\",\"004802\",\"004901\",\"004902\",\"005001\",\"005003\",\"005004\",\"005202\",\"005203\",\"005302\",\"005303\",\"005501\",\"005502\",\"005503\",\"005601\",\"005602\",\"005801\",\"005802\",\"005900\",\"006400\"]}]}]}}", +"maxzoom": "13", "minzoom": "12", "name": "tests/tl_2022_11_tract/out/-z14_-Z12_--coalesce-densest-as-needed_--generate-variable-depth-tile-pyramid_-M25000.json.check.mbtiles", "strategies": "[{},{},{},{},{},{},{},{},{},{},{},{},{\"coalesced_as_needed\":87,\"tile_size_desired\":39190,\"truncated_zooms\":3},{\"truncated_zooms\":18},{}]", +"tippecanoe_decisions": "{\"basezoom\":14,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tile.cpp b/tile.cpp index 3e3221605..1c08e0cd8 100644 --- a/tile.cpp +++ b/tile.cpp @@ -1525,6 +1525,7 @@ bool drop_feature_unless_it_can_be_added_to_a_multiplier_cluster(layer_features ssize_t which_serial_feature; if (find_feature_to_accumulate_onto(layer.features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { + strategy.dropped_as_needed++; if (layer.multiplier_cluster_size < (size_t) retain_points_multiplier) { // we have capacity to keep this feature as part of an existing multiplier cluster that isn't full yet // so do that instead of dropping it @@ -1532,7 +1533,6 @@ bool drop_feature_unless_it_can_be_added_to_a_multiplier_cluster(layer_features return false; // converted rather than dropped } else { preserve_attributes(attribute_accum, sf, layer.features[which_serial_feature]); - strategy.dropped_as_needed++; drop_rest = true; return true; // dropped } @@ -1589,8 +1589,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch // empirical estimate from ne_10m_admin_0_countries, CPAD units, Cal fires. // only try to make an overzoomable final tile if it seems like it might work long long estimated_output_tile_size = 0.6693 * estimated_complexity - 3.36e+04; - - if (estimated_output_tile_size < (long long) (0.9 * max_tile_size)) { + if (estimated_output_tile_size < (long long) (0.9 * max_tile_size) && 30 - z > detail) { first_detail = 30 - z; second_detail = detail; trying_to_stop_early = true; @@ -1640,6 +1639,9 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch size_t lead_features_count = 0; // of the tile so far size_t other_multiplier_cluster_features_count = 0; // of the tile so far + bool too_many_features = false; + bool too_many_bytes = false; + std::atomic within[child_shards]; long long start_geompos[child_shards]; for (size_t i = 0; i < (size_t) child_shards; i++) { @@ -1867,8 +1869,8 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch } else if (additional[A_DROP_DENSEST_AS_NEEDED]) { add_sample_to(gaps, sf.gap, gaps_increment, seq); if (sf.gap < mingap) { + can_stop_early = false; if (drop_feature_unless_it_can_be_added_to_a_multiplier_cluster(layer, sf, layer_unmaps, multiplier_seq, strategy, drop_rest, arg->attribute_accum)) { - can_stop_early = false; continue; } } @@ -1912,8 +1914,8 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch // search here is for LLONG_MAX, not minextent, because we are dropping features, not coalescing them, // so we shouldn't expect to find anything small that we can related this feature to. if (minextent != 0 && sf.extent + coalesced_area <= minextent) { + can_stop_early = false; if (drop_feature_unless_it_can_be_added_to_a_multiplier_cluster(layer, sf, layer_unmaps, multiplier_seq, strategy, drop_rest, arg->attribute_accum)) { - can_stop_early = false; continue; } } @@ -1931,11 +1933,9 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch } } else if (additional[A_DROP_FRACTION_AS_NEEDED] || prevent[P_DYNAMIC_DROP]) { add_sample_to(drop_sequences, drop_sequence, drop_sequences_increment, seq); - // search here is for LLONG_MAX, not minextent, because we are dropping features, not coalescing them, - // so we shouldn't expect to find anything small that we can related this feature to. if (mindrop_sequence != 0 && drop_sequence <= mindrop_sequence) { + can_stop_early = false; if (drop_feature_unless_it_can_be_added_to_a_multiplier_cluster(layer, sf, layer_unmaps, multiplier_seq, strategy, drop_rest, arg->attribute_accum)) { - can_stop_early = false; continue; } } @@ -1995,10 +1995,42 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch unsigned long long sfindex = sf.index; if (sf.geometry.size() > 0) { - if (lead_features_count > max_tile_size || (lead_features_count + other_multiplier_cluster_features_count > max_tile_features && !prevent[P_FEATURE_LIMIT])) { + // There are two adjustments that we need to make + // when determining if we have hit the feature count + // or byte size limit: + // + // The max_tile_size and max_tile_features are inflated + // to account for the number of multiplier clusters features + // we are carrying around in addition to their lead features. + + size_t adjusted_max_tile_size = max_tile_size; + if (lead_features_count > 0) { + adjusted_max_tile_size = adjusted_max_tile_size * (lead_features_count + other_multiplier_cluster_features_count) / lead_features_count; + } + size_t adjusted_max_tile_features = max_tile_features; + if (lead_features_count > 0) { + adjusted_max_tile_features = adjusted_max_tile_features * (lead_features_count + other_multiplier_cluster_features_count) / lead_features_count; + } + + // The number of features in the tile, meanwhile, is inflated + // to account for the number of features that we have skipped over + // because we were already over the limit, in addition to those + // that we have actually added to the layer (as either lead or + // multiplier features). + + size_t adjusted_feature_count = lead_features_count + other_multiplier_cluster_features_count; + if (kept > 0) { + adjusted_feature_count = adjusted_feature_count * (skipped + kept) / kept; + } + + if (too_many_bytes || adjusted_feature_count > adjusted_max_tile_size) { // Even being maximally conservative, each feature is still going to be // at least one byte in the output tile, so this can't possibly work. skipped++; + too_many_bytes = true; + } else if (too_many_features || ((adjusted_feature_count > adjusted_max_tile_features) && !prevent[P_FEATURE_LIMIT])) { + skipped++; + too_many_features = true; } else { kept++; @@ -2134,13 +2166,13 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch first_time = false; // Adjust tile size limit based on the ratio of multiplier cluster features to lead features - size_t scaled_max_tile_size = max_tile_size; + size_t adjusted_max_tile_size = max_tile_size; if (lead_features_count > 0) { - scaled_max_tile_size *= (lead_features_count + other_multiplier_cluster_features_count) / lead_features_count; + adjusted_max_tile_size = adjusted_max_tile_size * (lead_features_count + other_multiplier_cluster_features_count) / lead_features_count; } - size_t scaled_max_tile_features = max_tile_features; + size_t adjusted_max_tile_features = max_tile_features; if (lead_features_count > 0) { - scaled_max_tile_features *= (lead_features_count + other_multiplier_cluster_features_count) / lead_features_count; + adjusted_max_tile_features = adjusted_max_tile_features * (lead_features_count + other_multiplier_cluster_features_count) / lead_features_count; } // Operations on the features within each layer: @@ -2387,11 +2419,11 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch } mvt_tile tile; - size_t totalsize = 0; + size_t feature_count = 0; for (auto layer_iterator = layers.begin(); layer_iterator != layers.end(); ++layer_iterator) { std::vector &layer_features = layer_iterator->second.features; - totalsize += layer_features.size(); + feature_count += layer_features.size(); mvt_layer layer; layer.name = layer_iterator->first; @@ -2482,14 +2514,23 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch continue; } - if (totalsize > 0 && tile.layers.size() > 0) { - if (totalsize > scaled_max_tile_features && !prevent[P_FEATURE_LIMIT]) { - if (totalsize > arg->feature_count_out) { - arg->feature_count_out = totalsize; + // Again, adjust the retabulated feature count to estimate + // how many total features there would have been if we hadn't + // hit the limit and started dropping early. + + size_t adjusted_feature_count = feature_count; + if (kept > 0) { + adjusted_feature_count = adjusted_feature_count * (skipped + kept) / kept; + } + + if (adjusted_feature_count > 0 && tile.layers.size() > 0) { + if (too_many_features || (adjusted_feature_count > adjusted_max_tile_features && !prevent[P_FEATURE_LIMIT])) { + if (adjusted_feature_count > arg->feature_count_out) { + arg->feature_count_out = adjusted_feature_count; } if (!quiet) { - fprintf(stderr, "tile %d/%u/%u has %zu features, >%zu \n", z, tx, ty, totalsize, scaled_max_tile_features); + fprintf(stderr, "tile %d/%u/%u has %zu (estimated %zu) features, >%zu \n", z, tx, ty, feature_count, adjusted_feature_count, adjusted_max_tile_features); } if (trying_to_stop_early && line_detail == first_detail) { @@ -2515,7 +2556,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch line_detail++; // to keep it the same when the loop decrements it continue; } else if (mingap < ULONG_MAX && (additional[A_DROP_DENSEST_AS_NEEDED] || additional[A_COALESCE_DENSEST_AS_NEEDED] || additional[A_CLUSTER_DENSEST_AS_NEEDED])) { - mingap_fraction = mingap_fraction * scaled_max_tile_features / totalsize * 0.80; + mingap_fraction = mingap_fraction * adjusted_max_tile_features / adjusted_feature_count * 0.80; unsigned long long m = choose_mingap(gaps, mingap_fraction, mingap); if (m != mingap) { mingap = m; @@ -2530,7 +2571,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch continue; } } else if (additional[A_DROP_SMALLEST_AS_NEEDED] || additional[A_COALESCE_SMALLEST_AS_NEEDED]) { - minextent_fraction = minextent_fraction * scaled_max_tile_features / totalsize * 0.75; + minextent_fraction = minextent_fraction * adjusted_max_tile_features / adjusted_feature_count * 0.75; long long m = choose_minextent(extents, minextent_fraction, minextent); if (m != minextent) { minextent = m; @@ -2544,11 +2585,11 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch line_detail++; continue; } - } else if (totalsize > layers.size() && (additional[A_DROP_FRACTION_AS_NEEDED] || additional[A_COALESCE_FRACTION_AS_NEEDED] || prevent[P_DYNAMIC_DROP])) { + } else if (feature_count > layers.size() && (additional[A_DROP_FRACTION_AS_NEEDED] || additional[A_COALESCE_FRACTION_AS_NEEDED] || prevent[P_DYNAMIC_DROP])) { // The 95% is a guess to avoid too many retries // and probably actually varies based on how much duplicated metadata there is - mindrop_sequence_fraction = mindrop_sequence_fraction * scaled_max_tile_features / totalsize * 0.95; + mindrop_sequence_fraction = mindrop_sequence_fraction * adjusted_max_tile_features / adjusted_feature_count * 0.95; unsigned long long m = choose_mindrop_sequence(drop_sequences, mindrop_sequence_fraction, mindrop_sequence); if (m != mindrop_sequence) { mindrop_sequence = m; @@ -2581,26 +2622,24 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch compressed = pbf; } - if (trying_to_stop_early && line_detail == first_detail) { - // printf("%lld %zu\n", estimated_complexity, compressed.size()); - } - - if (compressed.size() > scaled_max_tile_size && !prevent[P_KILOBYTE_LIMIT]) { - // Estimate how big it really should have been compressed - // from how many features were kept vs skipped for already being - // over the threshold + // And similarly, adjust the compressed byte size to estimate + // what it would have been if we hadn't stopped dropping features early - double kept_adjust = (skipped + kept) / (double) kept; + size_t adjusted_tile_size = compressed.size(); + if (kept > 0) { + adjusted_tile_size = adjusted_tile_size * (kept + skipped) / kept; + } - if (compressed.size() > arg->tile_size_out) { - arg->tile_size_out = compressed.size() * kept_adjust; + if (too_many_bytes || (adjusted_tile_size > adjusted_max_tile_size && !prevent[P_KILOBYTE_LIMIT])) { + if (adjusted_tile_size > arg->tile_size_out) { + arg->tile_size_out = adjusted_tile_size; } if (!quiet) { - if (skipped > 0) { - fprintf(stderr, "tile %d/%u/%u size is %lld (probably really %lld) with detail %d, >%zu \n", z, tx, ty, (long long) compressed.size(), (long long) (compressed.size() * kept_adjust), line_detail, scaled_max_tile_size); + if (adjusted_tile_size == compressed.size()) { + fprintf(stderr, "tile %d/%u/%u size is %lld (probably really %zu) with detail %d, >%zu \n", z, tx, ty, (long long) compressed.size(), adjusted_tile_size, line_detail, adjusted_max_tile_size); } else { - fprintf(stderr, "tile %d/%u/%u size is %lld with detail %d, >%zu \n", z, tx, ty, (long long) compressed.size(), line_detail, scaled_max_tile_size); + fprintf(stderr, "tile %d/%u/%u size is %lld with detail %d, >%zu \n", z, tx, ty, (long long) compressed.size(), line_detail, adjusted_max_tile_size); } } @@ -2627,7 +2666,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch } line_detail++; // to keep it the same when the loop decrements it } else if (mingap < ULONG_MAX && (additional[A_DROP_DENSEST_AS_NEEDED] || additional[A_COALESCE_DENSEST_AS_NEEDED] || additional[A_CLUSTER_DENSEST_AS_NEEDED])) { - mingap_fraction = mingap_fraction * scaled_max_tile_size / (kept_adjust * compressed.size()) * 0.80; + mingap_fraction = mingap_fraction * adjusted_max_tile_size / adjusted_tile_size * 0.80; unsigned long long m = choose_mingap(gaps, mingap_fraction, mingap); if (m != mingap) { mingap = m; @@ -2642,7 +2681,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch continue; } } else if (additional[A_DROP_SMALLEST_AS_NEEDED] || additional[A_COALESCE_SMALLEST_AS_NEEDED]) { - minextent_fraction = minextent_fraction * scaled_max_tile_size / (kept_adjust * compressed.size()) * 0.75; + minextent_fraction = minextent_fraction * adjusted_max_tile_size / adjusted_tile_size * 0.75; long long m = choose_minextent(extents, minextent_fraction, minextent); if (m != minextent) { minextent = m; @@ -2656,8 +2695,8 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch line_detail++; continue; } - } else if (totalsize > layers.size() && (additional[A_DROP_FRACTION_AS_NEEDED] || additional[A_COALESCE_FRACTION_AS_NEEDED] || prevent[P_DYNAMIC_DROP])) { - mindrop_sequence_fraction = mindrop_sequence_fraction * scaled_max_tile_size / (kept_adjust * compressed.size()) * 0.75; + } else if (feature_count > layers.size() && (additional[A_DROP_FRACTION_AS_NEEDED] || additional[A_COALESCE_FRACTION_AS_NEEDED] || prevent[P_DYNAMIC_DROP])) { + mindrop_sequence_fraction = mindrop_sequence_fraction * adjusted_max_tile_size / adjusted_tile_size * 0.75; unsigned long long m = choose_mindrop_sequence(drop_sequences, mindrop_sequence_fraction, mindrop_sequence); if (m != mindrop_sequence) { mindrop_sequence = m; @@ -2682,6 +2721,11 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch exit(EXIT_PTHREAD); } + if (skipped > 0 || too_many_bytes || too_many_features) { + fprintf(stderr, "Can't happen: writing tile even though we skipped\n"); + exit(EXIT_IMPOSSIBLE); + } + if (outdb != NULL) { mbtiles_write_tile(outdb, z, tx, ty, compressed.data(), compressed.size()); } else if (outdir != NULL) { @@ -2802,7 +2846,6 @@ exit(EXIT_IMPOSSIBLE); dc.begin(); } - arg->wrote_zoom = z; long long len; struct zxy parent(z - 1, x / 2, y / 2); @@ -2810,6 +2853,7 @@ exit(EXIT_IMPOSSIBLE); skip_tile(&dc, &geompos, arg->compressed); len = 1; } else { + arg->wrote_zoom = z; len = write_tile(&dc, &geompos, arg->global_stringpool, z, x, y, z == arg->maxzoom ? arg->full_detail : arg->low_detail, arg->min_detail, arg->outdb, arg->outdir, arg->buffer, arg->fname, arg->geomfile, arg->geompos, arg->minzoom, arg->maxzoom, arg->todo, arg->along, geompos, arg->gamma, arg->child_shards, arg->pool_off, arg->initial_x, arg->initial_y, arg->running, arg->simplification, arg->layermaps, arg->layer_unmaps, arg->tiling_seg, arg->pass, arg->mingap, arg->minextent, arg->mindrop_sequence, arg->prefilter, arg->postfilter, arg->filter, arg, arg->strategy, arg->compressed, arg->shared_nodes_map, arg->nodepos, *(arg->shared_nodes_bloom), (*arg->unidecode_data), estimated_complexity, arg->skip_children_out); } @@ -2903,6 +2947,8 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: std::set skip_children; int z; + int largest_written = -1; + for (z = iz; z <= maxzoom; z++) { std::atomic most(0); @@ -3122,6 +3168,9 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: if (args[thread].wrote_zoom > z) { z = args[thread].wrote_zoom; } + if (args[thread].wrote_zoom > largest_written) { + largest_written = args[thread].wrote_zoom; + } if (args[thread].still_dropping) { extend_zooms = true; @@ -3184,6 +3233,10 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: } } + if (largest_written >= 0 && maxzoom > largest_written) { + maxzoom = largest_written; + } + for (size_t j = 0; j < TEMP_FILES; j++) { // Can be < 0 if there is only one source file, at z0 if (geomfd[j] >= 0) { diff --git a/version.hpp b/version.hpp index 551fa53e5..249d85f60 100644 --- a/version.hpp +++ b/version.hpp @@ -1,6 +1,6 @@ #ifndef VERSION_HPP #define VERSION_HPP -#define VERSION "v2.59.0" +#define VERSION "v2.60.0" #endif